View previous topic :: View next topic
|
Author |
Message |
sanjay sahu
New User
Joined: 18 Feb 2014 Posts: 3 Location: India
|
|
|
|
I am tring to XPED one program but XPEDITER is not considering the input PARM value given in JCL as a result I am not getting correct result. Please confirm if PARM parameter need to spesify some where else like we specify the files(using ALLOC comand).
Program is executing with no error(RC=00),,but no desired output..
JCL execution step with PARM value:-
//STEP010 EXEC PGM=IKJEFT1B,DYNAMNBR=20,
// PARM=('%DB2BATCH','SYS(DQA0)','PROG(TB3900)',
// 'PLAN(TCLOCK3)',
// 'PARM(000104DPCDPC365OLBOLB954RYDRYD365IPCDPC000)'),
// REGION=6M
PARM value refrence in cobol program.
01 WL-LINKAGE.
03 WL-LINKAGE-LEN PIC S9(04) COMP.
03 WL-NUMBER-OF-DAYS PIC 9(04).
03 WL-NUMBER-OF-BRANDS PIC 99.
03 WL-BRAND-ARRAY OCCURS 7.
05 WL-BRAND PIC X(3).
05 WL-APPLIC-ID PIC X(3).
05 WL-BANK-ID PIC 9(3).
|
|
Back to top |
|
|
sanjay sahu
New User
Joined: 18 Feb 2014 Posts: 3 Location: India
|
|
|
|
It looks its working after specifying the value in below section:_
PARM ( Caps = YES ) ===> |
|
Back to top |
|
|
Rohit Umarjikar
Global Moderator
Joined: 21 Sep 2010 Posts: 3076 Location: NYC,USA
|
|
|
|
Yes, XPED will not read PARM from JCL , you would need to provide them manually like you did above. |
|
Back to top |
|
|
|