Hi Dick,
Thanks so much for your quick response, but I am already having the code you mentioned in my ctlcard...what I meant to say earlier that currently this job has been setup as per the IDMS....now we have converted IDMS to DB2...so the subsequent changes needs to be done in the jobs as well. We were using the same IDMS program in multiple jobs with diffrent Parms. Now since that program has been converted to DB2, I have modified all the jobs which are using this program in following way:
//LCI60GAB EXEC PGM=IKJEFT01,REGION=0M
----------steplib/I-O dataset details--------
//*
//SYSTSIN DD DSN=IDMSDB2.CTLCARD(60PAA),DISP=SHR
//*
Ctlcard is having following content:
DSN SYSTEM(DB2)
RUN PROGRAM(LCI60PAA) PLAN(LCIBT0D) PARM('PROD,TXNSLIMIT=15000,GNB=Y')
END
But the problem is all the jobs are using the same program LCI60PAA, but the parms are diffrent. I dont want to put the ctlcard code in the JCL itself (since not a std way of coding). So I was thinking if there is any way where i can use the same ctlcard for all the jobs and pass the parms thru JCL only ? This will reduce the no of ctlcards that i wud have to move in to production.
Please help.