Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
DOC111 - WTDocument name (refDoc)
Expected result --> Get associated changes
QuerySpec qsLink=FlexibleChangeHelper.getFlexibleChangeLinksQuerySpec((FlexibleChangeItem) refDoc, FlexibleChangeLink.PARENT_ROLE, false, FlexibleChangeHelper.PROCESS_TYPE_ID);
QueryResult qr1 = PersistenceHelper.manager.find(qsLink);
System.out.println("Size of the Query Result for Associated Objects::"+qr1.size());
I would look at the Change2Helper class. It should have a method given a Changeable (the document) to find its change object. You never mentioned which change object your were looking for.