I have a file that contains a mix of EBCDIC text and HEX.
EG. 46000102D0
I am trying to use DFSORT & OUTREC to convert the chars from position 7 to 10 back to EBCDIC.
eg. 460001 }
In essence there is an existing program that unpacks the characters to decipher them.
Note that I can get from the 460001 } value to the 46000102D0 value by using the following:
OUTREC FIELDS=(1:1,6,
7:7,54,HEX,X)
What I cant do is get it back the other way.