Hi all,
When i am trying to execute my Rexx pgm in batch mode i have got the following error,
DATA SET NNNN.DDD.REXX.INPT.JJJ NOT IN CATALOG OR CATALOG CAN NOT BE ACCESSED
MISSING DATA SET NAME+
MISSING NAME OF DATA SET TO BE ALLOCATED
The input or output file Inpfil is not allocated.It cannot be opened for I/O.
EXECIO error while trying to GET or PUT a record.
DATA SET NNNN.DDD.REXX.CON.JJJ NOT IN CATALOG OR CATALOG CAN NOT BE ACCESSED
MISSING DATA SET NAME+
MISSING NAME OF DATA SET TO BE ALLOCATED
The input or output file INDD is not allocated.It cannot be opened for I/O.
EXECIO error while trying to GET or PUT a record
-->actually,the dataset which is to be access is DDD.REXX.INPT.JJJ (INPUT PDS),DDD.REXX.CON.JJJ(CONFIG FILE) ,BUT in the above msg INPUT PDS name AND CONFIG FILE is come along with my id(NNNN).why is that so?
-->inpfil,INDD is the logical name used in alloc statement in the REXX pgm
below is the jcl i have used to call my Rexx Main module,
//STEP1 EXEC PGM=IKJEFT1A,PARM='JCLMAIN'
//SYSEXEC DD DSM=<REXX PDS NAME>, DISP=SHR
//SYSTSPRT DD SYSOUT=A
//SYSTSIN DD DUMMY
//
Where i have went wrong?
please help me to fix this
Thanks all,
Skanda