How the query condition- work item status can be grouped?
Accepted answer
You could try to export all stories in the state, change the ID and then import the exported stories and set the new ID. I am not sure if that is a good idea though.
One other answer
Today after your response, I sit and search the literal ID usage in for e.g. epic - "closed" state and replace it with defect - "Closed" state literal ID.
Before that I exported all epic workitems in "closed" state. Once the ID in the project configuration source got modified, the csv file is imported back with "custom data mapping" file which will map "closed" state to literal id.
<action icon="processattachment:/workflow/close.gif" id="com.ibm.team.apt.epic.workflow.action.a7" name="Set Closed" state="com.ibm.team.apt.epic.workflow.state.s3"/>
<state group="closed" icon="processattachment:/workflow/close.gif" id="com.ibm.team.apt.epic.workflow.state.s3" name="Closed" showResolution="false">
wherever literal ID com.ibm.team.apt.epic.workflow.state.s3 is used , that is replaced with Defect workitem closed state literal id "s4".
<action icon="processattachment:/workflow/close.gif" id="com.ibm.team.apt.epic.workflow.action.a7" name="Set Closed" state="s4"/>
<state group="closed" icon="processattachment:/workflow/close.gif" id="s4" name="Closed" showResolution="false">
Comments
How would I know? I think thi sis something you have to test and decide for yourself.
Ralph, Basically I am worrying about the state literal ID which is belongs to Story or Task replaced by defect state literal ID. In case if RTC in-built "scripts" used the Story/Task state ID in LOAD Bar or Ranking or any of the plan view or effort hours roll up, then it will have an effect. To make sure this shouldn't be an indirect effect and disturb the plan review.
Ralph, Basically I am worrying about the state literal ID which is belongs to Story or Task replaced by defect state literal ID. In case if RTC in-built "scripts" used the Story/Task state ID in LOAD Bar or Ranking or any of the plan view or effort hours roll up, then it will have an effect. To make sure this shouldn't be an indirect effect and disturb the plan review.
Ralph, Basically I am worrying about the state literal ID which is belongs to Story or Task replaced by defect state literal ID. In case if RTC in-built "scripts" used the Story/Task state ID in LOAD Bar or Ranking or any of the plan view or effort hours roll up, then it will have an effect. To make sure this shouldn't be an indirect effect and disturb the plan review.