On Mon, 6 Dec 2021 12:58:08 -0700, Sri h Kolusu wrote:

>> DFSORT job to convert FBM to FBA?   --
>
>Michael,
>
>Try this.
>
>/STEP0100 EXEC PGM=SORT
>//SYSOUT   DD SYSOUT=*
>//SORTIN   DD DISP=SHR,DSN=your.FBM.file
>//SORTOUT  DD DSN=Your.FBA.File,
>//            DISP=(NEW,CATLG,DELETE),
>//            SPACE=(CYL,(X,Y),RLSE)
>//SYSIN    DD *
>  OPTION COPY
>  INREC FINDREP=(ENDPOS=1,
>                  INOUT=(X'01',C'+',X'03',C'+',
>                         X'0B',C' ',X'09',C' ',
>    ...
According to 
<https://www.ibm.com/docs/en/i/7.3?topic=information-machine-code-carriage-control-characters>
X'03'  is "No operation" i.e. "don't print".  C'+' is "Print without spacing."
Might a more faithful interpretation be to delete the line?

VM RSCS uses X'03' to introduce "Tags": metadata not to be printed.

-- gil

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to