‎2010 Jul 26 7:54 PM
Hi, I was wondering if someone knows about a bapi with which I can get only the "transaction code" and "program name".
I need to get those for a specified user, but I don't want to set on a trace, that's why I'd like to use the transaction STAD.
If anyone can help, thanks in advance
Grtz,
Dragovian
‎2010 Jul 26 8:51 PM
‎2010 Jul 27 5:05 PM
ok, so I go like this
TYPE-POOLS sapwl .
DATA: all_stats TYPE sapwl_allstats.
CALL FUNCTION 'SAPWL_READ_STATISTIC_FILES'
EXPORTING
read_client = '*'
read_time = '200000'
read_start_date = sy-datum
read_start_time = '000000'
read_username = sy-uname
read_workprocess = 'FFFF'
wait_factor = 150
CHANGING
all_stats = all_stats
.
how'd I get "start-time" "report-name" "date" "username"?