I have the same situation and question. Searching the forums on filehelpers.net, I found this thread (since 2007!) With the answer of Marcos himself:
Question:
In a layout with length separators, can I skip some fields? For example:
ExternalSysId | ExportDate | FirstName | Lastname
I want only FirstName and LastName and don't want to clutter up my code with dummy fields?
Answer:
There is no built-in function in the library.
You can make fields private, the library will read the values, but you donβt see them from your code =) If you need these fields in the future, you can exchange them publicly.
Thus, using the Record Class Wizard to reduce the amount of input required and then make unnecessary fields private, looks like the best option at this point.
Steve S.
source share