‎2007 May 22 10:38 AM
Hi,
In my scenario, my input XML is in the following format...
<Product>
<Site_ID>A1, A2, A3</Site_ID>
<SIte_Name>ABC, XYZ, PQR</Site_Name>
</Product>
A1 corresponds to ABC
A2 corresponds to XYZ and so on...
Is there some way to retrieve values from such a source file and then map it to the target
i.e A1 ABC has to go as one record
A2 XYZ has to go as a second record and so on..
Thanks in advance,
Regards,
Karen
‎2007 May 22 10:49 AM
using xslt you can retrive Site_ID values and Site_name and then you have to use your own abap logic to split the values.
for example
site_name = 'A1, A2, A3, A4' .
then you can use split site_name at ',' into table <itab>
‎2007 May 22 11:25 AM
Hi Durairaj,
Can i do this in the message mapping tool??
Regards,
Karen Pereira
‎2007 May 22 11:30 AM
<i>Can i do this in the message mapping tool??</i>
i guess you mean XI.
yes, but you may have to write a custom function do this kind of mapping
‎2007 May 22 11:46 AM
‎2008 Jun 27 10:23 AM