2006 Sep 20 12:55 PM
Hi experts,
i have Zpgm.
for that i want to determine the following parameters.
Program Execution Date
Start Time
End Time
How can we do this?
2006 Sep 20 1:00 PM
I think that u are talking about a sceduled job ..
for this u can go to SM37, SM36 and check it ..
2006 Sep 20 1:00 PM
2006 Sep 20 1:01 PM
Hi,
use Program Execution Date-sy-datum
Start Time-sy-uzeit
End Time-sy-uzeit.
report ztest.
start-of-selection.
lv_start = sy-uzeit.
lv_date = sy-datum.
end-ofs-election.
lv_end = sy-uzeit.
write:lv_date,lv_start,lv_end.
also check STAT transaction.
or update TVARV table with program last runtime,date.
Regrads
Amole
2006 Sep 20 1:03 PM