‎2007 May 31 12:28 PM
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
‎2007 May 31 12:35 PM
Just check the transaction code - SM04 and Functional Pool - KKBL which will help you to get required information.
Regards
Nilesh shete
‎2007 May 31 12:37 PM
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
‎2007 May 31 1:18 PM
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,