cancel
Showing results for 
Search instead for 
Did you mean: 

Enclose values in "" using FCC

markbernabe
Active Participant
0 Kudos

Hi,

I have this XML source and I need to convert it to CSV

<root>

     <order>

          <date>2013/12/12</date>

          <type>X</type>

          <name>alex</name>

     </order>

</root>

I'm able to convert it already using FCC.

2013/12/12     X     alex

However, another requirement is to enclose all values in the CSV in ". The expected output should look something like this

"2013/12/12"      "X"      "alex"

Do we have a content conversion parameter that can do this?

Thanks!

Accepted Solutions (1)

Accepted Solutions (1)

Muniyappan
Active Contributor
0 Kudos

Hi,

did you search in scn?

check this.

http://scn.sap.com/thread/1725047

Regards,

Muniyappan.

markbernabe
Active Participant
0 Kudos

Hi Muni,

Yeah. I just found the same after posting this question Now trying it. Thanks

markbernabe
Active Participant
0 Kudos

Hi All,

The parameters mentioned here works though need to modify the fieldSeparator since I need to use tab as delimiter. 

http://scn.sap.com/thread/1725047

order.fieldSeparator = "'0x09'"

Answers (0)