Webject to retrieve custom attribute with name Class
Hi,
We have a use-case where we have added some custom attributes in Windchill.
We retrieve the values against these attributes using Query-Objects webject , like so
<ie:webject name="Query-Objects" type="OBJ">
<ie:param name="instance" data="${@FORM[]supporting-adapter[*]}"
valueSeparator=";" delim=";"/>
<ie:param name="attribute" data="name,Class" delim=","/>
<ie:param name="group_out" data="objects"/>
</ie:webject>
This works fine with almost all attributes, however, if the attribute Name is "Class", it returns the class-type of the object and not the actual value.
e.g.
TestPart
Class: "ABC"
Returned Value: WCTYPE|wt.part.WTPart|local.eQVM.TestPart
Expected Value: ABC
Is there a way we can mask/escape class attribute Name to get expected Data?

