Is there a way to reuse workflow states in RTC?
In my teams process template, we have developed work items with different workflows. Some workflows have states with the same name. All workflows have a "Created" state, and a "Closed" state. When querying on the Status of a work item type, we have multiple "Created" states to choose from because there is a unique "Created" state associated with each workflow.
WorkflowA: Created -> Working -> Closed
WorkflowB: Created -> Working->Finalize->Closed
Query List for Status: Created (WorkflowA), Created (WorkflowB), Finalized, Closed(WorkflowA), Closed (WorkflowB).
You can see how this list can rapidly grow. Is it possible to either reuse the same Status in multiple workflows? Alternatively, is it possible to pre-filter the Statuses associated with the work item type when querying?
For example
WorkItemX has Workflow A.
WorkItemY has Workflow B.
If WorkitemX is selected in a query on Type, the available selection for a filter on Status would be "Created", "Working", "Closed". It would be known that these statuses are associated with WorkitemX's workflow and not any other workflow.