| Ramesh Jayapal 2004-02-08, 5:35 pm |
| Hi Group,
I have some issues while I mapping inbound doc to outbound doc. Here the
document contents flow :
Inbound doc:
<inbound>
<details>
<reference>Quote No</reference>
<value>10000</value>
</details>
<details>
<reference>Purchase Order No</reference>
<value>20000</value>
</details>
<details>
<reference>Sales Order No</reference>
<value>30000</value>
</details>
</inbound>
Note: Cardinality of details is 0-*
Outbond doc:
<inbound>
<details>
<value>10000</value>
<value>20000</value>
<value>30000</value>
</details>
</inbound>
Note: Cardinality of details is 1-*
Looks simple right?
If my inbound document is follow, how to get the following outbond doc?
Inbound doc:
<inbound>
<details>
<reference>SO</reference>
<value>20000</value>
</details>
</inbound>
Outbond doc:
<outbound>
<details>
<value>*</value> if No Quote segment then
put *
<value>20000</value>
<value>*</value> if No Sale Order Segment
then put *
</details>
</outbound>
Appreciate if you guide me how to accomplish this case. Let me know if you
need more details.
Thanks & Regards,
Ramesh.
|