Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hello All,
I am looking for a way to provide the sequence to the Change Task through customization from the CN workflow. Is there any supported API which can be used to accomplish this?
Regards,
Karan
WTChangeActivity2 task;
WTChangeOrder2 changeNotice;
String sequenceNumber = (String) wt.change2.changeplanning.ChangePlanningHelper.getService().getExecutionValues(changeNotice).get(task);
This will give you the sequence number of a given task and a given change notice.
I haven't figured out though how to modify those values. I can just read them and use the information in my workflow.
the below api can be used to create plan :
wt.change2.changeplanning.ChangePlanningHelper.getService().createPlan(VersionableChangeItem arg0, Map<String, WTCollection> arg1)
