Hi,
I have the next definition in a file:
SELECT SOMODFOV ASSIGN TO FIL-SOMODFOV
ORGANIZATION BINARY SEQUENTIAL,
ACCESS SEQUENTIAL
STATUS W-ESTADO.
FD SOMODFOV LABEL RECORDS ARE STANDARD
RECORD IS VARYING IN SIZE FROM 1 TO 4000
DEPENDING ON W-TAMANO.
01 REG-FICFOV PIC X(4000).
The problem is by creating the file this way, I get 2 characters in the beginning of each record. Something like this:
,<TFOV020160A
I attach the file too because the first character is not shown in HTML (you can see it on Windows Notepad for example)BinarySequentialDependingOn.txt
I need to use this kind of file because I'm required to use a file without 'enters' and each record has a different size.
Has anyone any alternative approach?
Thanks!



