How to update an object in Windchill with IBAs

LWCNormalizedObject obj = new LWCNormalizedObject(my_persistable,null,Locale.US,new UpdateOperationIdentifier());
obj.load("attributeA","attribtueB");
obj.set("attributeA",Boolean.TRUE);
obj.set("attribtueB","Hello World");
obj.apply();

你可能感兴趣的:(How to update an object in Windchill with IBAs)