Need parameters of changeStatus() in IChange

IChangeObject.changeStatus(IStatus[],boolean,string,boolean,boolean,boolean,IUser[],IUser[],IUser[],boolean)

please help me with the parameters of ChangeStatus() in IChange and the other overloaded methods of changeStatus

Add Comment
1 Answer(s)
Best answer

changeStatus(IStatus newStatus, boolean auditRelease, String comment, boolean notifyOriginator, boolean notifyCCB, Object[] notifyList, Object[] approvers, Object[] observers, boolean urgent)

 

nextStatus = change.getDefaultNextStatus();
 change.changeStatus(nextStatus, false, "", false, false, null, null,null, false);

 

Agile Angel Answered on October 28, 2015.

Hi,

IItem item=(IItem)s.getObject(“Star”, “01-ST001A1N”);
ICell cell=item.getCell(ItemConstants.ATT_TITLE_BLOCK_PART_CATEGORY);
IAgileList listvalues = cell.getAvailableValues();
System.out.println(listvalues);

I am unable to fetch the values of the list using above code.
please help me

on November 15, 2015.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.