Coding a flexible link between change objects
Using WC 12.0.2.7, I am trying to auto-create and link change objects at various levels (PR to CR, CR to CN, etc.). I have searched the community for examples and found one called "Create Change Request from Problem Report and Default to same Container" that seemed to have some useful code, but the linking between the CR and CN in the example used the older model of linking.
wt.change2.FormalizedBy fb = new wt.change2.FormalizedBy();
fb.setChangeIssue(ci);
fb.setChangeRequest2(CRNew2);
wt.fc.PersistenceServerHelper.manager.insert(fb);
I cannot find examples of the newer objects used for linking (ChangeProcessLink?). Does anyone have an example?
Related question: Does anyone have the most recent JavaDocs available from PTC (or can anyone tell me where to get them)? My copy appears to have many gaps (such as the "insert" above call which does not appear in my docs on the "PersistenceManagerSvr" interface used in "PersistenceServerHelper.manager").

