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

pgm

Former Member
0 Likes
1,263

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?

4 REPLIES 4
Read only

Former Member
0 Likes
990

I think that u are talking about a sceduled job ..

for this u can go to SM37, SM36 and check it ..

Read only

Former Member
0 Likes
990

Hello,

Could you please elaborate your query ?

Regs,

Venkat

Read only

Former Member
0 Likes
990

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

Read only

Former Member
0 Likes
990

Or you can try this program

RSSTAT26

this may help you