Hello,
I'm trying to retrieve information from ABAP_BOR at the second level.
Example :
Transaction <b>SWO1</b> we display Object Type <b>BUS2009</b>
This contains the attibute <b>Requisitioner</b> and we can retreive the data with the following xml configuration :
<CustomAttributeSource id="ABAP_BOR" objectIdHolder="externalObjectId" objectType="BUS2009" cacheValidity="final">
<!-- Name of requisitioner/requester -->
<Attribute name="Requisitioner" displayName=""/>
</CustomAttributeSource>
And it works ... (this is what I call first degree)
BUT, now this Object Type contains also sub-Object-Type <b>BUS1001</b> with additional attributes / Key fields. I want to retreive the Material Number information (Key field = <b>Material</b>)
How do I have to modify my xml ?
Thank you for your support.
Vincent