Hi,
I'm very new to BizTalk. I'm currently on BTS20013R2, and I need to parse a csv file similar to the following:
"00000000","0400","20150112","20140101","20150112""00102445","20140102","60934N625 ","PCOXX ","FEDERATED MMKT PRIME OBLG FUND #851 ","+000000000000"
"00102445","20140103","60934N625 ","PCOXX ","FEDERATED MMKT PRIME OBLG FUND #851 ","+000001902700"
"00105047","20140104","60934N625 ","PCOXX ","FEDERATED MMKT PRIME OBLG FUND #341 ","+000001565700"
"999999999999","000000000098"
The first line is the header, last line is the trailer, between is the repeating body. Fields are separated by commas and the contents are wrapped by double quotes. Using Flat File Schema Wizards, I created a header schema for the first line (a single record with 5 fields), a trailer schema for the last line (a single record with 2 fields) and a body schema for the repeating records in between (repeating record with 6 fields). The wrap character type is "Character" and wrap character is a double quotes. A ReceivePipeline was used to specify all the schemas. Unfortunately there was no tag in this case to indicate the repeating body. When I run my app, I got an error similar to: Unexpected data found while looking for: ',' at line 5. I would really appreciate it if any one could point out what I did wrong here or better yet could give me an example based on my data.
Many thanks,
Jack