This question may sounds basic, but this gives some headache at times.
I have a text file like below description.
Key - 11 bytes
filler - 10 bytes
field 1 - I have defined in COBOL as S9(3)V9(2).
filler - 10 bytes
field 2 - field 1 - I have defined in COBOL as S9(3)9(2).
...... and so on
File
<--key------->< filler ><field 1><filler><field2>
00000000001 9.32 4.22>
00000000002 11.56 100.11
00000000003 131.56
00000000003 81.56 30.67
00000000001 9.32 4.22>
00000000002 11.56 100.11
00000000003 131.56
00000000003 81.56 30.67
Problem looks like with my S9(3)V9(2). The programs abends even doesnt DISPLAY after going in processing section.
I have to perform some compuation on these field. Can anyone help ?
Code'd