Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
wt.change2.WTChangeActivity2 changeTask = (wt.change2.WTChangeActivity2) primaryBusinessObject;
java.util.Vector results = com.ptc.windchill.enterprise.changeable.ChangeableDataFactory.getResultingObjects(changeTask);
Could you share some more of the code you're trying?
Essentially I think you need to navigate from the ECN to the Resulting Objects. A first step would be this: https://www.ptc.com/en/support/article/CS55955?source=search
PA_11085333
You can use this code snippet
ChangeActivity2 changeActivity = (ChangeActivity2) primaryBusinessObject;
QueryResult theChangeablesAfterResult = ChangeHelper2.service.getChangeablesAfter(changeActivity,
false);
while (theChangeablesAfterResult.hasMoreElements()) {
Object element = theChangeablesAfterResult.nextElement();
if (element instanceof ChangeRecord2) {
changeRecord = (ChangeRecord2) element;
Changeable2 theChangeable = changeRecord.getChangeable2();
