IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Using ISRLEMX in JCL


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
usharaniA

New User


Joined: 22 Jan 2008
Posts: 85
Location: India

PostPosted: Mon Oct 20, 2008 3:27 pm
Reply with quote

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
View user's profile Send private message
Garry Carroll

Senior Member


Joined: 08 May 2006
Posts: 1193
Location: Dublin, Ireland

PostPosted: Mon Oct 20, 2008 4:49 pm
Reply with quote

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
View user's profile Send private message
usharaniA

New User


Joined: 22 Jan 2008
Posts: 85
Location: India

PostPosted: Mon Oct 20, 2008 5:14 pm
Reply with quote

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
View user's profile Send private message
Garry Carroll

Senior Member


Joined: 08 May 2006
Posts: 1193
Location: Dublin, Ireland

PostPosted: Mon Oct 20, 2008 6:33 pm
Reply with quote

Glad to have been of help.

Garry.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts ISRLEMX Limitations PL/I & Assembler 11
No new posts IBM program ISRLEMX dataset limitation. TSO/ISPF 9
No new posts Help Neede on ISRLEMX JCL & VSAM 10
Search our Forums:

Back to Top