EBS-OTM Item Integration BPEL Console question
Hello All,
I apologize in advance if this is the incorrect category in which to post the question.
We are trying to customize the Item Integration piece that comes into OTM (6.1.0) from EBS Order Management (11.10). We have made our changes to the APPS package and the JAR files in the WshSendItemRefDataToOtm bpel instance.
When we test our changes, we can see our new elements and their values (DOMAIN NAME TMS and XID CASE) coming through during the G_getEBSItemInfo_OutputVariable in the BPEL audit (InvokeEBSItemPL) but the values are not there for the outputVariable from WshXFormToOutput. Our new elements show in its XML, but they are empty? Any ideas?
InvokeEBSItemPl:
(we have added the PACKAGEDITEMSPECREF element)
<GET_EBS_ITEM_INFO xmlns="">
<GET_EBS_ITEM_INFO_ITEM>
<ITEM>
<TRANSACTIONCODE>IU</TRANSACTIONCODE>
<ITEMGID>
<GID>
<DOMAINNAME>TMS</DOMAINNAME>
<XID>1050-673466</XID>
</GID>
</ITEMGID>
<ITEMNAME>803125</ITEMNAME>
<DESCRIPTION>S56 BB 4CS</DESCRIPTION>
</ITEM>
<PACKAGING>
<PACKAGEDITEMGID>
<GID>
<DOMAINNAME>TMS</DOMAINNAME>
<XID>1050-673466</XID>
</GID>
</PACKAGEDITEMGID>
<DESCRIPTION>S56 BB 4CS</DESCRIPTION>
<PACKAGEDITEMSPECREF>
<SHIPUNITSPECREF>
<SHIPUNITSPECGID>
<GID>
<DOMAINNAME>TMS</DOMAINNAME>
<XID>CASE</XID>
</GID>
</SHIPUNITSPECGID>
</SHIPUNITSPECREF>
</PACKAGEDITEMSPECREF>
</PACKAGING>
</GET_EBS_ITEM_INFO_ITEM>
</GET_EBS_ITEM_INFO
WshXFormToOutput:
<ns1:TransmissionBody>
<ns1:GLogXMLElement>
<ns1:ItemMaster>
<ns1:Item>
<ns1:TransactionCode>IU
</ns1:TransactionCode>
<ns1:ItemGid>
<ns1:Gid>
<ns1:DomainName>TMS</ns1:DomainName>
<ns1:Xid>1050-673466</ns1:Xid>
</ns1:Gid>
</ns1:ItemGid>
<ns1:ItemName>803125</ns1:ItemName>
<ns1:Description>S56 BB 4CS</ns1:Description>
</ns1:Item>
<ns1:Packaging>
<ns1:PackagedItemGid>
<ns1:Gid>
<ns1:DomainName>TMS</ns1:DomainName>
<ns1:Xid>1050-673466</ns1:Xid>
</ns1:Gid>
</ns1:PackagedItemGid>
<ns1:Description>S56 BB 4CS</ns1:Description>
<ns1:PackagedItemSpecRef>
<ns1:ShipUnitSpecRef>
<ns1:ShipUnitSpecGid>
<ns1:Gid>
<ns1:DomainName/>
<ns1:Xid/>
</ns1:Gid>
</ns1:ShipUnitSpecGid>
</ns1:ShipUnitSpecRef>
</ns1:PackagedItemSpecRef>
</ns1:Packaging>
</ns1:ItemMaster>
</ns1:GLogXMLElement>
</ns1:TransmissionBody>