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
Anyone seen documentation on how these types of reports can be used in workflow task?
wt.change2.WTChangeOrder2 ecn = (wt.change2.WTChangeOrder2) primaryBusinessObject;
StringBuilder sb= new StringBuilder();
wt.util.WTProperties props = wt.util.WTProperties.getLocalProperties();
String LCSTATE_APPROVED = props.getProperty("ext.piab.lifecyclestate.approved");
String LCSTATE_UNDERREVIEW = props.getProperty("ext.piab.lifecyclestate.underreview");
String LCSTATE_REWORK = props.getProperty("ext.piab.lifecyclestate.rework");
String LCSTATE_CLARIFY = props.getProperty("ext.piab.lifecyclestate.clarify");
sb.append(LCSTATE_APPROVED);
sb.append(LCSTATE_UNDERREVIEW);
sb.append(LCSTATE_REWORK);
sb.append(LCSTATE_CLARIFY);
String states = sb.toString();
VarianceReport = ext.#####.change.order.ChangeOrderHandler.getVarianceReportLink(ecn, states);