|
View previous topic :: View next topic
|
| Author |
Message |
usharaniA
New User
Joined: 22 Jan 2008 Posts: 85 Location: India
|
|
|
|
Hi,
Im using ISRLEMX program in my jcl to find the cross refrence of the copy book used in the cobol program. here my jcl is
| Code: |
//LEMX EXEC PGM=ISRLEMX,
// PARM=('COB,&KGCM232,B,N,L,4, ,00,ENG,4,7,1,/,SYSDA')
//ISRLCODE DD DISP=SHR,DSN=U162936.MAP.PDS (my source pds)
// DD DISP=SHR,DSN=U162936.MAP.COPYLIB (my copybook pds)
//ISRLEXPD DD DSN=U162936.ANA.PS,DISP=MOD
//ISRLXREF DD DSN=U162936.OUT.PS,DISP=SHR
//ISRLMSG DD SYSOUT=* |
I find the cross refrence for the member Kgcm232 and i have given in the Parm field , when i give L in the parm field
PARM=('COB,&KGCM232,B,N,L,4, ,00,ENG,4,7,1,/,SYSDA')
L=(To Create a member parts list starting with the specified member)
I getting the following error message in the spool,
| Code: |
********************************* TOP OF DATA **********************************
SORTIN ddname (ISRLIN) not found
SORTOUT ddname (ISRLOUT) not found
******************************** BOTTOM OF DATA ******************************** |
Can you tell me what it is and where i should give in my jcl |
|
| Back to top |
|
 |
Garry Carroll
Senior Member
Joined: 08 May 2006 Posts: 1216 Location: Dublin, Ireland
|
|
|
|
Suggest you review your parameters...
| Code: |
| PARM=('COB,&KGCM232,B,N,L,4, ,00,ENG,4,7,1,/,SYSDA') |
Are you using &KGCM232 as a symbolic parameter?
Parameter 6 specifies scanning 4 libraries, but you only have 2 in the JCL.
Parameter 7 specifies a blank as the identifier for a copybook??
Parameter eight says to start a position zero?
Parameter nine should read ENU?
I'd suggest specifying Y rather than N for parameter 4 and let ISRLEMX allocate sort files, if needed.
Garry. |
|
| Back to top |
|
 |
usharaniA
New User
Joined: 22 Jan 2008 Posts: 85 Location: India
|
|
|
|
Thnaks carroll,
Now its working fine for me.
I changed my parm to
| Code: |
| PARM=('COB,KGCM232,B,Y,L,2,COPY,07,ENU,4,7,1,/,SYSDA') |
|
|
| Back to top |
|
 |
Garry Carroll
Senior Member
Joined: 08 May 2006 Posts: 1216 Location: Dublin, Ireland
|
|
|
|
Glad to have been of help.
Garry. |
|
| Back to top |
|
 |
|
|
 |
All times are GMT + 6 Hours |
|