How to update WTChangeRequest2 object in windchill using java?
Hi,
this is my code, i want to update the attributes of the wt.change2.WTChangeRequest2 of existing objects,
Thank you in advance.
wt.change2.WTChangeRequest2 doc = null;
try {
wt.fc.ObjectIdentifier oid = wt.fc.ObjectIdentifier
.newObjectIdentifier("wt.change2.WTChangeRequest2:15971");
doc = (wt.change2.WTChangeRequest2) wt.fc.PersistenceHelper.manager
.refresh(oid);
System.out.println(doc.getName());
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}

