I attempted to send this reply direct to the poster,
but your email address was rejected by yahoo - the
account has been disabled. I find it very frustrating
that posters block direct replies, or use invalid email
addresses, and it tempts me to not waste my time trying
to help you, especially when the question was probably
more appropriately sent to [EMAIL PROTECTED]
But since I took the time to write the answer, and then
to read the reject from yahoo, I might as well waste a
little more time and send my original suggestion:
Since your posting indicated you have MXG, the best source of information for
TSO logons during a time period is to read the SMF
type 30 subtype 1 job/TSO/STC initiation record, which is written whenever a
USERID logs on.
RACF may or may not have been enabled to track TSO logons, and there should be
far fewer TYPE30 Subtype 1 records to examine to get
the list of USERs that have logged on during some time period.
The simplest MXG program that will read SMF 30s, and only creates observations
in the TYPE30_1 dataset, and also only create obs for
TSO logons would be:
// EXEC MXGSAS
//SMF DD
//SYSIN DD *
%LET MACFILE=
%QUOTE( IF ID=30 AND SUBTYPE=1; );
%LET MACJBCK=
%QUOTE( IF TYPETASK='TSU'; ) ;
%INCLUDE SOURCLIB(TYPE30);
PROC FREQ DATA=TYPE30_1;
TABLES JOB;
Merrilly yours,
Barry Merrill
----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html