Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! 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);