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

Need to Find out the Load module


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

New User


Joined: 19 Jul 2008
Posts: 11
Location: Mumbai

PostPosted: Wed Aug 20, 2008 2:27 pm
Reply with quote

Hi,

I have a load module present in two different PDS.If I run a job with this Load module,I wanted to know which load module been accessed.

I want to know from which PDS the Load module has been accessed.
Back to top
View user's profile Send private message
Aaru

Senior Member


Joined: 03 Jul 2007
Posts: 1287
Location: Chennai, India

PostPosted: Wed Aug 20, 2008 2:39 pm
Reply with quote

Nivas,

Quote:
I want to know from which PDS the Load module has been accessed.


Which PDS is mentioned in STEPLIB?
Back to top
View user's profile Send private message
Gnanas N

Active Member


Joined: 06 Sep 2007
Posts: 792
Location: Chennai, India

PostPosted: Wed Aug 20, 2008 2:40 pm
Reply with quote

Please check STEPLIB/JOBLIB libraries and then Job Log...
Back to top
View user's profile Send private message
Srihari Gonugunta

Active User


Joined: 14 Sep 2007
Posts: 295
Location: Singapore

PostPosted: Wed Aug 20, 2008 2:40 pm
Reply with quote

Check the steplib order
Back to top
View user's profile Send private message
Nivas_mumbai

New User


Joined: 19 Jul 2008
Posts: 11
Location: Mumbai

PostPosted: Wed Aug 20, 2008 2:50 pm
Reply with quote

Hi,

As this Load module resided in production libraries the job does not contains any steplib.I verified the Job log,but i couldn't find any info there.
Back to top
View user's profile Send private message
Aaru

Senior Member


Joined: 03 Jul 2007
Posts: 1287
Location: Chennai, India

PostPosted: Wed Aug 20, 2008 2:53 pm
Reply with quote

Nivas,

Quote:
the job does not contains any steplib


Which program are you executing in that JCL? Post the first few lines of your JCL.
Back to top
View user's profile Send private message
Nivas_mumbai

New User


Joined: 19 Jul 2008
Posts: 11
Location: Mumbai

PostPosted: Wed Aug 20, 2008 3:11 pm
Reply with quote

Hi Aaru,

Below is the Job that ae are using.

//SFBP10 EXEC PGM=E8842B04,REGION=8192K,TIME=10,
// PARM=0000200010120807312080805
//SYSOUT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSLIST DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//E8842D86 DD DSN=E8842TS.TL.PT.BKUPD.S2080805,
// DISP=(OLD,KEEP)
//E8842D11 DD DSN=E8842TS.D11RS.TXLIFE,
// DISP=(NEW,CATLG,DELETE),
// MGMTCLAS=WORKD,STORCLAS=STD,
// SPACE=(CYL,(10,5),RLSE),
// DCB=(LRECL=1420,BLKSIZE=0,RECFM=FB,BUFNO=20)
Back to top
View user's profile Send private message
Arun Raj

Moderator


Joined: 17 Oct 2006
Posts: 2481
Location: @my desk

PostPosted: Wed Aug 20, 2008 3:31 pm
Reply with quote

Quote:
I have a load module present in two different PDS


Do you have multiple loadlibs in Production?

Thanks,
Arun
Back to top
View user's profile Send private message
gcicchet

Senior Member


Joined: 28 Jul 2006
Posts: 1702
Location: Australia

PostPosted: Wed Aug 20, 2008 3:39 pm
Reply with quote

Hi,

have you tried TSO ISRDDN, then type LPA and then MEM E8842B04



Gerry
Back to top
View user's profile Send private message
Nivas_mumbai

New User


Joined: 19 Jul 2008
Posts: 11
Location: Mumbai

PostPosted: Wed Aug 20, 2008 3:54 pm
Reply with quote

Hi Jerry,

I tried using "have you tried TSO ISRDDN, then type LPA and then MEM E8842B04 " thsi option.It is giving security violation.

Do we have any other option.
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Wed Aug 20, 2008 4:04 pm
Reply with quote

Hi Gerry,

When I try the above with LPA, I got the following warning at my shop-
Quote:
This function may search Linklist, LPA, Parmlib or APF libraries. At some sites this may lead to security violations resulting in anything from an unhappy security guy at your door to revocation of your TSO user id.

While without LPA option, in between, I don't get such warning..can you please assist..?
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Wed Aug 20, 2008 4:15 pm
Reply with quote

JESYSMSG for every job (when you code the appropriate jobcard parm for MSGLEVEL) will show you every dataset that is accessed. These include INCLUDE PDS's, and loadlibs that are not part of the JOBLIB or STEPLIB
Back to top
View user's profile Send private message
Aaru

Senior Member


Joined: 03 Jul 2007
Posts: 1287
Location: Chennai, India

PostPosted: Wed Aug 20, 2008 4:16 pm
Reply with quote

Anuj,

Quote:
While without LPA option, in between, I don't get such warning..can you please assist..?


Without an LPA option, it looks more like a search command on the list of libraries and hence no warning messages.
Back to top
View user's profile Send private message
gcicchet

Senior Member


Joined: 28 Jul 2006
Posts: 1702
Location: Australia

PostPosted: Wed Aug 20, 2008 4:17 pm
Reply with quote

H Anuj,

without LPA you don't get LPALIB and LINKLIST which contain LPA
libraries and Link List libraries respectively.

Gerry
Back to top
View user's profile Send private message
Nivas_mumbai

New User


Joined: 19 Jul 2008
Posts: 11
Location: Mumbai

PostPosted: Wed Aug 20, 2008 4:25 pm
Reply with quote

Hi Dick,

I have given MSGLEVEL=(1,1) in my job.But I could not find the Loadlib details.
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Wed Aug 20, 2008 4:29 pm
Reply with quote

Hi,

Thanks Aaru.

gcicchet wrote:
without LPA you don't get LPALIB and LINKLIST which contain LPA
libraries and Link List libraries respectively.
Thanks Gerry, yeah a little research on LPA tells me that it's -Link Pack Area. BTW, before posting I've ignored the message posted before & excuted the command...umm..whole screen was full of warnings, well I terminated it instantly..but yeah..cross fingers though.. icon_smile.gif
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 Load new table with Old unload - DB2 DB2 6
No new posts To find whether record count are true... DFSORT/ICETOOL 6
No new posts How to load to DB2 with column level ... DB2 6
No new posts REASON 00D70014 in load utility DB2 6
No new posts Find the size of a PS file before rea... COBOL Programming 13
Search our Forums:

Back to Top