Page 2 of 2

Re: Retrun Code 12 while trying to convert EBCDIC to ASCII

PostPosted: Thu Nov 28, 2013 12:20 am
by skolusu
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)
//*