So I'm attempting to work with files that are created as COBOL fixed length records. I was given the raw data files (.GCUS file extension) and a "file layout" document that has specifications which include a table with the following columns "Position, Picture, Type, Description" (it has two sections, a "header" record and a "Detail Record A".
I have never worked with any COBOL file types before and I'm trying to find a way to parse and read these files for use in an internal application and ideally I need them to be re-exported in either CSV or XML so I can import them in the application we're building.
So far the only software I've found that can read these files is this one: https://www.fundmanagersoftware.com/
But I haven't found the option within it to actually export to a CSV or XML.
Any suggestions would be greatly appreciated.