Hi Everyone,
I'm stuck in creating a Flat File Schema for the following structure
Header
DataLine1
DataLine2
DataLine1
DataLine2
Trailer
I would like to have a XML equivalent like
<Message>
<Header />
<Data>
<DataLine1 />
<DataLine2 />
</Data>
<Data>
<DataLine1 />
<DataLine2 />
</Data>
<Trailer />
</Message>
I dont to do Debatching, i need the whole message.
Based on my finding, i see there is a way of doing this with Choice/Sequence group. I've already created a schema but its not accpeting mutlple DataLine records.
Please Advice.
Thanks in advance,
Karthick G.