Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

User trace ---Report

Former Member
0 Likes
519

Hi experts,

can any body tell me how can i make a ABAP Report which will give number of users current login to the system.Report also should give number of user login in into the system in the day and for how long time

Regards,

imran

3 REPLIES 3
Read only

Former Member
0 Likes
454

Just check the transaction code - SM04 and Functional Pool - KKBL which will help you to get required information.

Regards

Nilesh shete

Read only

Former Member
0 Likes
454

Hi

USERS log-on data is stored in<b> USR02</b> Table

Write a select statement for that table you will get all users.

check other USR* tables if needed for further data.

From SM04 Tcode also you will know the Logged on users.

Reward points if useful

Regards

Anji

Read only

Former Member
0 Likes
454

hi .

use Tcode STAT or ST03 and ST03n or SUIM

in these tcode you will get your required information

or else you can try this code.

TYPES: S_TAB LIKE UINFO.

DATA : IT_TAB TYPE TABLE OF S_TAB.

CALL FUNCTION 'THUSRINFO'

TABLES

USR_TABL = IT_TAB .

LOOP AT IT_TAB INTO WA_TAB.

write:/ wa_tab.

endloop.

refresh it_tab.

this will give the number of user currently logged in the give client of the system.

hope this will solve your problem and don't forget to reward points,

regards,