mbattu wrote:Hi, below is the JCL and am getting ICE14A 0 INVALID OPERATOR error while running it
//TOOLIN DD *
OUTREC BUILD=(1,4,5,TRAN=ETOA)
/*
I am using a VB file. Please help me out
mbattu,
A toolin is supposed to have a valid ICETOOL operator rather than your control cards. You are passing control cards which obviously is NOT going to work.
use the following
//TOOLIN DD *
COPY FROM(SORTIN) TO(SORTOUT) USING(CTL1)
//CTL1CNTL DD *
OUTREC BUILD=(1,4,5,TRAN=ETOA)
//*
COPY FROM(SORTIN) TO(SORTOUT) USING(CTL1)
//CTL1CNTL DD *
OUTREC BUILD=(1,4,5,TRAN=ETOA)
//*