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

RTC Category modify name with api

How can I update rtc category name with java api?

0 votes



One answer

Permanent link
ICategory tempCategory = null;
// Check category on RTC.
tempCategory = HBCategory.GetICategoryFromNamePath(teamRepository, projectArea, oldCategoryPathArray);
if(tempCategory != null){
tempCategory = (ICategory) tempCategory.getWorkingCopy();

tempCategory.setName(newCategoryName);
tempCategory = workItemClient.saveCategory(tempCategory, null);
}

0 votes

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
× 33

Question asked: Aug 26 '15, 4:24 a.m.

Question was seen: 5,135 times

Last updated: Sep 09 '15, 3:13 a.m.

Confirmation Cancel Confirm