Originally posted by: Muk1234
hello, I have a csv file muk.csv. I want to convert the input values in the csv file to an xml file. I don't know how to interpret the headesr s in the csv file, I mean i just want the values to be mapped and not the headers. The header names come as an output in the generated xml file. So if I have the following input: Name,Id,TotalRec
Muks,mp1,2
TransID,Amt,Desc
trans1,$100,asd
trans2,$200,dld
Expected output: <Id>Muks</Id>
<transId>trans1</transId>
<AmtProcessed>100</AmtProcessed>
<Details>asd</Details>
<Id>Muks</Id>
<transId>trans2</transId>
<AmtProcessed>200</AmtProcessed>
<Details>dld</Details>
what i am getting is something like this: <Id>Name</Id>
<transId>Id</transId>
<AmtProcessed>TotalRec</AmtProcessed>
<Details>Muks</Details>
<Id>mp1</Id>
<transID>2</transId>.......ans so on
So basically it is treating header names as input. I just want the values. Can anyone help me on this please?
#DataExchange#IBMSterlingTransformationExtender#IBM-Websphere-Transformation-Extender