[Could not run ‘flatFile.docs:variablelength’
com.wm.app.b2b.server.ServiceException: java.io.IOException: [FFP.0014.0003] Variable Length file format invalid, file ended before record filled
com.wm.app.b2b.server.ServiceException: java.io.IOException: [FFP.0014.0003] Variable Length file format invalid, file ended before record filled
at pub.flatFileImpl.convertToValues(flatFileImpl.java:426)]
Based upon the data shared, the type of parser you want is Delimiter not Variable length assuming your intent is to parse each row into records with fields (elements in an IS document).
Assuming that is what you want, for the data you shared, the record delimiter is newline and the field delimiter is comma. You’ll also want to define the quoted release character and the release character – specifying these will allow the data values to have delimiter characters by escaping them. Read the documentation on this for details.