Hi All,
My source file structure :
<Record>....0 Unbounded
<Name>
<Phone>0 Unbounded
<Subjects>0 Unbounded
</Record>
Now if my source flat file is
A,111,222,333,444,MAths,Science,English,
B,555,666,777,English
and target file for above flat file should be as :
<Record>....0 Unbounded
<Name><Name>
<Phone>111</Phone>
<Phone>222</Phone>
<Phone>333</Phone>
<Phone>444</Phone>
<Subjects>Maths</Subjects>
<Subjects>Science</Subjects>
<Subjects>English</Subjects>
</Record>
<Record>....0 Unbounded
<Name>B<Name>
<Phone>555</Phone>
<Phone>666</Phone>
<Phone>777</Phone>
<Subjects>English</Subjects>
</Record>
How should I configure this in File Content Conversion?
I am not able to figure out how to configure multiple occurences of phone and Subjects field in content conversion as record is also having 0-Unbound.
Please help.