Hi All,
I have a following structure as flat file:
ABC DEF
XYZ - 0909
I am doing good
-
and i want to convert this file into XML format without creating IR objects.
as
<?xml version="1.0" encoding="UTF-8"?>
<File_Header>
<File_Content>ABC DEF</File_Content>
<File_Content>XYZ - 0909</File_Content>
<File_Content>I am doing good
<File_Content>-</File_Content>
</File_Header>
What Content Conversion can i give in parameters so that i can get the above o/p?