Hi,
i am using the below jcl to convert ascii file to ebcdic file. But i want to perform check on the line feed also.
can i do it using the jcl?
//STEP01 EXEC PGM=IKJEFT01,REGION=512K
//SYSPRINT DD SYSOUT=*
//SYSTSPRT DD SYSOUT=*
//ASCIN DD DSN=ascii dataset,DISP=SHR
//EBCOUT DD DSN=ebcdic dataset,
// DISP=(,CATLG,DELETE),
// SPACE=(CYL,(168,25),RLSE),
//SYSTSIN DD *
OCOPY INDD(ASCIN) OUTDD(EBCOUT) CONVERT((BPXFX311)) TO1047
/*
regards,
Ken