How to get page three attributes using SOAP webservices
Hi i am using SOAP search web services to get all item information.
I am able to GET Page Two attributes,But i am not able to get Page Three attributes.
Below is my SOAP request.
<?xml version=’1.0′ encoding=’UTF-8′?>
<soapenv:Envelope >
<soapenv:Body>
<advancedSearch >
<request >
<classIdentifier>PartsClass</classIdentifier>
<criteria>[Title Block.Number] Contains ‘DELTA2′</criteria>
<caseSensitive>false</caseSensitive>
<displayName>SearchParts</displayName>
<resultAttributes>Title Block.Number</resultAttributes>
<resultAttributes>Title Block.Part Type</resultAttributes>
<resultAttributes>Title Block.Description</resultAttributes>
<resultAttributes>Title Block.Lifecycle Phase</resultAttributes>
<resultAttributes>Page Two.Item_Template</resultAttributes>
<resultAttributes>Page Three.Commodity</resultAttributes>
</request>
</advancedSearch>
</soapenv:Body>
</soapenv:Envelope>
Below is the error i am getting.
<message>Attribute “Page Three.Commodity” not found.</message>
Please help me how to retrieve Page Three attributes by using SOAP web services.
As my understanding this is causing because of we need to mention subclass,Can you please help me where to mention subclass….
Thanks in Advance……..