Display users active time in system

Ask/Clarify the questions on TSO, CLIST & REXX

Moderators: Veera, Moderator Group

Post Reply
himan
Member
Posts: 2
Joined: Sun Jul 22, 2018 3:19 pm
Location: INDIA

Display users active time in system

Post by himan » Sun Aug 05, 2018 12:43 am

I want to display the user's total active time in system using syslogs for all the users present in the system .

What I did - i got all the system logs into a dataset and then from that dataset i want to retrive the line which are containing userids along with their time duration but while doing this the loop with that logic runs for a single time only.

here is the code -

"ALLOC F(DD1) DA("USERIDS") SHR"
"EXECIO * DISKR DD1 (STEM B."
"ALLOC F(DD2) DA("USERIDS1") SHR"
J=1;I=1
DO WHILE I<=B.0
IF(WORDPOS('LOGGED',B.I)=11) THEN
DO
C.J=B.I
SAY C.J
"EXECIO * DISKW DD2 (STEM C."
J=J+1
END
I=I+1
END


so help please

Post Reply

FREE TUTORIALS

Tutorials
Free tutorials from mainframegurukul
  • JCL Tutorial
    Covers all important JCL concepts.
  • Cobol Tutorial
    This tutorials covers all Cobol Topics from STRING to COMP-3.
  • DB2 Tutorial
    DB2 Tutorial focuses on DB2 COBOL Programming.
  • SORT Tutorial
    This Tutorial covers all important aspects of DFSORT with examples
  • CICS Tutorial
    This CICS tutorial covers CICS concepts and CICS Basics, CICS COBOL Programming.
Interview
Mainframe Interview questions



Other References
Mainframe Tools and others