View previous topic :: View next topic |
Author |
Message |
ankusume4u Beginner
Joined: 26 May 2004 Posts: 5 Topics: 2
|
Posted: Fri Aug 27, 2004 8:17 am Post subject: Help Required with IKJEFT utiliity |
|
|
Hello,
I am using a JCL which passes a parameter PARAM1 a parameterized PROC .
Now somewhere in this proc this parameter needs to get passed to a COBOL\DB2 program which is being run using IKJEFT utility. There is a PARAM keyword that can be used but throuh that i can only send harcoded values. How do i send a dynamic parameter in SYSIN?? Illustrated below. Is their any other way of doing this??
Code: | **********JOB1***********
//JOB1STEP EXEC JOB2,
// PARAM1= 'XYZ'
*************JOB PROC JOB2**********
//JOB2STEP EXEC PGM = IKJEFT1B
//SYSOUT=*
//SYSIN
//SYSTSIN DD *
DSN SYSTEM(DBAG)
RUN PROGRAM(PROG1) -
PLAN(PLAN-NAME) -
LIB('LOAD-LIBRARY')
PARAM(???????????)
END
END |
|
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
|
Back to top |
|
|
ankusume4u Beginner
Joined: 26 May 2004 Posts: 5 Topics: 2
|
Posted: Sat Aug 28, 2004 2:23 am Post subject: |
|
|
Thanks Kolusu,
I got the answer to my query.
Regards,
Ankush |
|
Back to top |
|
|
|
|