I think the intent is identifying what used a member in a PDS.  

For example, knowing which jobs expand which PROCLIB members


Lizette


> -----Original Message-----
> From: IBM Mainframe Discussion List <IBM-MAIN@LISTSERV.UA.EDU> On Behalf Of
> Anthony Thompson
> Sent: Sunday, May 20, 2018 7:13 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: [EXTERNAL] Re: DAF (CBT 094) - Unknown Datatype x01BB
> 
> If all you are looking for is who has opened a dataset, SMF type 14 is all
> you should need.
> 
> Ant.
> 
> -----Original Message-----
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of Sankaranarayanan, Vignesh
> Sent: Monday, 21 May 2018 11:37 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: [EXTERNAL] Re: DAF (CBT 094) - Unknown Datatype x01BB
> 
> Thanks Ant, wouldnt setting SMF42 off mean I can't use DATASET EQ <something>
> stuff?
> 
> – Vignesh
> Mainframe Infrastructure
> 
> -----Original Message-----
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of Anthony Thompson
> Sent: Monday 21-May-2018 06:57
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: [EXTERNAL] Re: DAF (CBT 094) - Unknown Datatype x01BB
> 
> Sorry for not responding earlier, I had Friday off.
> 
> SMF record 42 is for DFSMS statistics, so I avoided the SMF42* undefined
> symbols and the invalid R4 by setting &RT_DFSMS to 0.
> 
> SMF record 82 is for ICSF, so I got rid of the SMF82ITE undefined symbol by
> &RT_ICSF to 0.
> 
> And you still have to set &ST_DFSMS07 to N for a clean assembly.
> 
> Ant.
> 
> -----Original Message-----
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of Sankaranarayanan, Vignesh
> Sent: Friday, 18 May 2018 9:40 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: [EXTERNAL] Re: DAF (CBT 094) - Unknown Datatype x01BB
> 
> .. I have a compiled DAF from earlier which works for DATASET EQ stuff, but
> it doesn't recognize the RACF keywords, though I probably would have let the
> RACF flag default to a yes when I asm it years ago.
> 
> – Vignesh
> Mainframe Infrastructure
> 
> -----Original Message-----
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of Sankaranarayanan, Vignesh
> Sent: 18 May 2018 13:08
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: [EXTERNAL] Re: DAF (CBT 094) - Unknown Datatype x01BB
> 
> Hi Anthony,
> 
> Looks like I'm getting DAF assemble errors to now..
> 
> ** ASMA044E Undefined symbol - SMF42S7
> ** ASMA044E Undefined symbol - SMF42FFS
> ** ASMA044E Undefined symbol - SMF42FTY
> ** ASMA044E Undefined symbol - SMF42FTM
> ** ASMA044E Undefined symbol - SMF42FSN
> ** ASMA044E Undefined symbol - SMF42FDN
> ** ASMA044E Undefined symbol - SMF42FIR
> ** ASMA044E Undefined symbol - SMF42FIW
> ** ASMA044E Undefined symbol - SMF42FNL
> ** ASMA044E Undefined symbol - SMF42FFN
> ** ASMA044E Undefined symbol - SMF42FFN
> 
> I don't want to disable the RACF flag as I intend to use the features enabled
> by it.
> Is it still required to set ST_DFSMS07 as a 'NO'?
> 
> – Vignesh
> Mainframe Infrastructure
> 
> -----Original Message-----
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of Anthony Thompson
> Sent: 17 May 2018 04:52
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: [EXTERNAL] Re: DAF (CBT 094) - Unknown Datatype x01BB
> 
> I downloaded the latest DAF from the CBT site and assembled it, without any
> serious problems. I turned off most options (&RT_<whatever> SETC C'000', also
> &ST_DFSMS07 SETC 'NO ' to get it to assemble, as noted in the DAF comments).
> 
> I did not get an "Unknown Datatype x'011b'" if I provided DAF with only SMF
> type 14/15, using a single control card of 'DATASET EQ <my TSO userid>'. That
> message seems to be associated with processing SMF type 80 records (RACF). I
> also avoided the same error if I excluded RACF SMF records in DAF input but
> included all others. Curiously, I still get that error message if I specify
> &RT_RACF  SETC 'NO ' and re-assemble DAF, and include type 80 SMF records in
> DAF input.
> 
> I also get a crapload of ' Unknown Data    AUDAT=    )' messages (not when
> using only SMF type14/15 as DAF input). I wish I had the time to diagnose
> these DAF errors further.
> 
> Note I am on z/OS 2.3.
> 
> As for knowing which jobs expand which PROCLIB members, I'm wondering if you
> can expose the IEFC001I message that usually appears in a job's JESYSMG
> dataset to SYSLOG/OPERLOG via a MPFLST member (that's the message that says
> this procedure / include group was expanded from this system / private
> library). Various automation products can also mess with route codes. Then
> you'd just need to scan a saved SYSLOG/OPERLOG to find out what you want to
> know.
> 
> Ant.
> 
> -----Original Message-----
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of Ravi Gaur
> Sent: Wednesday, 16 May 2018 4:18 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: DAF (CBT 094) - Unknown Datatype x01BB
> 
> Has anyone seen on z/OS2.2 I see DAF is reporting "Unknown Datatype x01BB"
> and while downloading and assemble/linkedit latest CBT 094 gives me 0255 for
> various undefined symbol though I have checked the maclib .
> 
> anyone the point is has anyone recent ran DAF against SMF data for 14/15 for
> DATASET EQ xxxx and got Unknown datatype message?
> 
> 
> Also I know it's a separate topic but I have a requirement to know which
> procs are being expanded by which job from the proclib so trying to get that
> and PDSMAN do report a little for READ/BROWSE function against the members if
> it's enable to cut the smf record however doesn't report correct job
> name...so if anybody also has idea if similar been in past a necessity for
> them to know and how they achieved it will be great to know as well.
> 
> 
> MARKSANDSPENCER.COM
> ________________________________
>  Unless otherwise stated above:
> Marks and Spencer plc
> Registered Office:
> Waterside House
> 35 North Wharf Road
> London
> W2 1NW
> 
> Registered No. 214436 in England and Wales.
> 
> Telephone (020) 7935 4422
> Facsimile (020) 7487 2670
> 
> www.marksandspencer.com

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Reply via email to