I have a flat file which I need to receive. Its data are like
123
12345
1
Each line in the flt file have fixed number of characters. 5 in the above case. So above data are like “123 “, “12345”, “1 “.
I have used a flat file disassembler to accomplish this.
But I get the problem,
There was a failure executing the receive pipeline: “BOACycleSchema.BOACycleFlatFileReceivePipeline, BOACycleSchema, Version=1.0.0.0, Culture=neutral, PublicKeyToken=8608ae88e805da95” Source: “Flat file disassembler” Receive Port: “ReceiveLockBoxImportFlatFilePort” URI: “SFTP://*/*.txt” Reason: Unexpected data found while looking for:
‘\r\n’
The current definition being parsed is LockBoxImport. The stream offset where the error occured is 0. The line number where the error occured is 1. The column where the error occured is 0.
Please let me know how can I come out of this error.
Thanks,