cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe
My Input Structure
<?xml version="1.0" encoding="utf-8"?>
<Root>
	<Headers>
		<HDR>3456</HDR>
		<Marble>Black</Marble>
        </Headers>
        <Detail>
		<Load>250kg</Load>
		<Size>44</Size>
        </Detail>
        <Trailer>
		<Print>A1</Print>
		<ID>W234</ID>
        </Trailer>

</Root>


My Outpuut Should look like below 3456;Black 250kg;44 A1;W234 Anyone has any input please share with the code to achieve above Requirement.
0 Likes
View Entire Topic
Former Member
0 Likes

Hi Zaheer

Did you use XmlUtil.serialize option

Here is a good documentation I found pl check and review if this works?

https://gist.github.com/magnuspalmer/12280bce85dc702714cf

Regards

Vinita

abbasabbas
Discoverer
0 Likes

Hi Vinita ,

The link shows CSV to xml requirement. I need to get CSV flat file as an Output, For my XML Input in CPI.

Could you please help achieving this ?