Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

Set RTC status/resolution together (Java API)

I need to set the status/resolution of work items. I'm currently doing this the following way:

1) WorkItemWorkingCopy.saveWorkflowAction(String) to set the status
2) WorkItemWorkingCopy.save(IProgressMonitor) to save the status
3) IWorkItem.setResolution2(Identifier<IResolution>) to set the resolution
4) WorkItemWorkingCopy.save(IProgressMonitor)

However, this does not work correctly since the resolution depends on the status.

For example: using the RTC GUI, I can select the correct status, and then the valid resolutions appear on the resolution drop-down. If I save the work item, the resolutions then disappear from the drop-down and only the selected one is there. So when using the above API methods, the work item is being saved with no resolution set, which makes it go to the default. The resolution setting is therefore not recognised and fails (with no error message - simply nothing happens). I cannot set the resolution before saving the status because then RTC does not recognise the selected status.

Using IWorkItem.setState2(Identifier<IState>) works, but is deprecated. What is the current solution for this?

0 votes


Accepted answer

Permanent link
don't you want to use WorkFlowInfo.getResolutionIds(action)?


as the state hasn't changed yet, cause the save hasn't completed.
so you would want to get the potential resolutions for that action.

then u would use the getWorkitem() to be able to set the resolution.. (hm.. should be available thru the workingcopy, but you never know)
Alexander Kershaw selected this answer as the correct answer

2 votes

Comments

That works - thanks!


One other answer

Permanent link
Alexander,

looking at the way the internal tests of the RTC SDK do it, it would appear that this could work:

Identifier<IWorkflowAction> actionID ... ;
Identifier<IResolution> resolution ... ;
workingCopy.setWorkflowAction(actionId.getStringIdentifier());
WorkItem workItem= (WorkItem) workingCopy.getWorkItem();
workItem.setResolution2(resolution);    
status= workingCopy.save(null);


Does this work for you? If this answers your question, please mark it as accepted.
Best,

Arne

0 votes

Comments

Hi Arne,

This isn't working - the same problem occurs.

The line:

    workingCopy.setWorkflowAction(actionId.getStringIdentifier());

seems to correctly set the internal workflowAction variable, but the line:

    WorkItem workItem= (WorkItem) workingCopy.getWorkItem();

returns a work item with the old state. Therefore an Identifier<IResolution>[] cannot be obtained.

My code for obtaining the available Identifier<IResolution>[] objects is:

    final Identifier<IState> wiState = workItem.getState2();
    final Identifier<IResolution>[] resolutions = workflowInfo.getStateResolutionIds(wiState);

This returns an empty array since it is going off the original state which had no available resolutions.

If the array would have contained the available resolutions, I would have used the IWorkflowInfo.getResolutionName(Identifier<IResolution>[]) method to find the desired one.

Do you have any ideas?

Regards,
Alex

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 10,936
× 411
× 369
× 9

Question asked: Jun 11 '14, 11:58 a.m.

Question was seen: 7,938 times

Last updated: Jun 20 '14, 2:03 p.m.

Confirmation Cancel Confirm