How to get the timestamps of members in a loadlibrary



Ask queries about other IBM Tools like Tivoli, COBTEST, Fault Analyzer, z/OS File Manager, Workload Simulator, APA, SCLM, Merge & Migration Tools etc...

How to get the timestamps of members in a loadlibrary

Postby quest » Mon Nov 16, 2009 9:23 pm

Can anyone tell me how can i retrieve the timestamp of members in a given loadlibrary?
quest
 
Posts: 3
Joined: Mon Nov 16, 2009 9:13 pm
Has thanked: 0 time
Been thanked: 0 time

Re: How to get the timestamps of members in a loadlibrary

Postby MrSpock » Mon Nov 16, 2009 10:51 pm

This webpage provides a lot of details for what you're looking for. Maybe you can write your process based on this information?
User avatar
MrSpock
Global moderator
 
Posts: 807
Joined: Wed Jun 06, 2007 9:37 pm
Location: Raleigh NC USA
Has thanked: 0 time
Been thanked: 4 times

Re: How to get the timestamps of members in a loadlibrary

Postby quest » Mon Nov 16, 2009 11:17 pm

But What I need to do in my rexx exec is ask as input the name of loadlib then open each of the programs in that loadlib in browse mode and retrieve the timestamp and generate a report in flat file displaying program/memname and its corresponding timestamp. Now my problem is how do I retrieve the timestamp after I open the member in browse mode.
quest
 
Posts: 3
Joined: Mon Nov 16, 2009 9:13 pm
Has thanked: 0 time
Been thanked: 0 time

Re: How to get the timestamps of members in a loadlibrary

Postby dick scherrer » Tue Nov 17, 2009 12:33 am

Hello,

Suggest you look into using AMBLIST.
Hope this helps,
d.sch.
User avatar
dick scherrer
Global moderator
 
Posts: 6268
Joined: Sat Jun 09, 2007 8:58 am
Has thanked: 3 times
Been thanked: 93 times

Re: How to get the timestamps of members in a loadlibrary

Postby MrSpock » Tue Nov 17, 2009 3:16 am

My link shows how to use AMBLIST, and ISPF, to find the timestamp.

Why is it necessary to open the loadlib member with an ISPF Browse function first (something you failed to mention originally)? You seem to already know that you can't run an ISPF Edit macro against a dataset in Browse mode.
User avatar
MrSpock
Global moderator
 
Posts: 807
Joined: Wed Jun 06, 2007 9:37 pm
Location: Raleigh NC USA
Has thanked: 0 time
Been thanked: 4 times

Re: How to get the timestamps of members in a loadlibrary

Postby quest » Tue Nov 17, 2009 9:26 pm

I tried amblist in my rexx exec. Thanks...that works.
quest
 
Posts: 3
Joined: Mon Nov 16, 2009 9:13 pm
Has thanked: 0 time
Been thanked: 0 time

Re: How to get the timestamps of members in a loadlibrary

Postby MFSlearner » Fri Dec 17, 2010 2:14 am

I could get the details of amblist at http://publib.boulder.ibm.com/infocente ... amblst.htm. But when I am trying to run it through the rexx I am getting below error. Can some one tell me if this utility is available by default to use . If not How can I use it.Thanks.

Below is my rexx program:
ADDRESS TSO
"ALLOC FI(LOAD) DSORG(PO) SHR DSNAME('"testid.uat.LOAD"')"
"aLLOC FI(SYSIN) NEW SPA(1,1) TR REUSE "
"ALLOC FI(SYSPRINT) NEW SPA(1,1) CYL REUSE"

DROP CTRL.
CTRL.1 = " LISTLOAD DDN=LOAD,MEMBER="CONV1A1",OUTPUT=XREF "
CTRL.0 = 1
"EXECIO * DISKW SYSIN (FINIS STEM CTRL"
ADDRESS LINKMVS "AMBLIST"
/* "ADDRESS ISPEXEC "SELECT PGM(AMBLIST)"" */
/* "ISPEXEC SELECT PGM(AMBLIST)" */
ADDRESS TSO
"EXECIO * DISKR SYSPRINT(FINIS STEM AMBLINE. "





Error:
13 *-* ADDRESS LINKMVS "AMBLIST"
>>> "AMBLIST"
IEC141I 013-34,IGG0191I,Userid,LOGISPF,SYSIN,VIO , ,SYS10350.T153839.RA00
0.Userid.R0100013
System abend code 013, reason code 00000052.
Abend in host command AMBLIST or address environment routine LINKMVS.
IEA995I SYMPTOM DUMP OUTPUT
SYSTEM COMPLETION CODE=013 REASON CODE=00000034
MFSlearner
 
Posts: 4
Joined: Wed Nov 17, 2010 8:09 pm
Has thanked: 0 time
Been thanked: 0 time

Re: How to get the timestamps of members in a loadlibrary

Postby dick scherrer » Fri Dec 17, 2010 2:51 am

Hello,

Did you read about the 013-34 or the iec141i?

Look here:
http://publibz.boulder.ibm.com/cgi-bin/ ... 2m791/3.69

I don't know if rexx can handle recfm=u datasets. Loadlibs are recfm=u.

Run amblist in batch.
Hope this helps,
d.sch.
User avatar
dick scherrer
Global moderator
 
Posts: 6268
Joined: Sat Jun 09, 2007 8:58 am
Has thanked: 3 times
Been thanked: 93 times

Re: How to get the timestamps of members in a loadlibrary

Postby Robert Sample » Fri Dec 17, 2010 2:56 am

Did you look up the S013-34 abend code in the manual (hint: check the IEC141 message).

I always submit a batch job to get the AMBLIST output.
Robert Sample
Global moderator
 
Posts: 3719
Joined: Sat Dec 19, 2009 8:32 pm
Location: Dubuque, Iowa, USA
Has thanked: 1 time
Been thanked: 279 times

Re: How to get the timestamps of members in a loadlibrary

Postby steve-myers » Fri Dec 17, 2010 6:03 am

The issue here is the SYSIN data set appears to have some combination of DCB attributes that data management can't handle. The manual is not very helpful about disclosing the exact problem. While you can run AMBLIST in your TSO session, interpreting its output using Rexx to read through the SYSPRINT data set from AMBLIST will not be very easy. I wold suggest you use the LISTIDR command, not the LISTLOAD command, in AMBLIST, too.
steve-myers
Global moderator
 
Posts: 2105
Joined: Thu Jun 03, 2010 6:21 pm
Has thanked: 4 times
Been thanked: 243 times


Return to Other IBM Tools

 


  • Related topics
    Replies
    Views
    Last post