Norm,
The DataIterator node is really meant for reading delimited files (i.e. iterating over something), not for reading fixed-format files. If it's a simple file, you could parse it up using the data iterator based on bytes, etc. but it would probably be pretty complicated if it's more than a few fields, and the DataIterator is not the fastest.
BTW, here's another post that shows how to read in a delimited file (i.e. how to reference the fields using *_outputData1, *_outputData2, etc. :https://www.lawsonguru.co...w/topic/Default.aspx
To read in something like an ACH file, or a any other fixed-format file, I recommend the DataStage TX node (i.e. The "Mercator" node). It's a true data mapping tool, and it's perfect for this type of application.
John:
Can you tell me a little more about parseing within DataIterator?
I only have a few fields to extract.
I am just starting reading the downloaded documentation DataStage TX.
that's a powerfull tool