I created a local attribute on Part. The attribute is of Boolean type and is a synchronized attribute.
In my code, I'm trying to get the value of that attribute. Following the code:
PersistableAdapter pa = new PersistableAdapter (product,null,null,null);
pa.load("isImageChanged");
System.out.println("Value is:: "+ pa.get("isImageChanged"));
The value is in sys out is always coming as null. Am I missing anything here?
Windchill/FlexPLM V11