Solved
How to use the java api to add WTDocument to the "Change Summary" table in Change Notice?
I have code to output "Change Summary" object types from a Change Notice
But I do not know how to add more objects to this table, for example, WTDocument
public static void printChangeAfter(WTChangeOrder2 wtChangeOrder2) {
try {
QueryResult result = ChangeHelper2.service.getChangeActivities(wtChangeOrder2);
while (result.hasMoreElements()) {
WTChangeActivity2 activity = (WTChangeActivity2) result.nextElement();
QueryResult res = ChangeHelper2.service.getChangeablesAfter(activity);
while (res.hasMoreElements()) {
WTObject object = (WTObject) res.nextElement();
System.out.println(object.getType());
}
}
} catch (WTException e) {
System.out.println("error " + e.getMessage());
}
}

