Application Development 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: 

Execution details of a Report

Former Member
0 Kudos

Hi,

I wanted to know if there is any table that holds the details of the execution of a report program. (i.e id of person, time, date etc)

Thanks,

Prasy

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

check the table D010SINF.

8 REPLIES 8

Former Member
0 Kudos

Hi,

check the table D010SINF.

0 Kudos

Hi,

This table gives details of who created it and changed it last etc...i need details of the execution. as to who executed it, when etc.

Thanks,

Prasy

former_member699750
Participant
0 Kudos

D010SINF

Regards

Sugumar.G

0 Kudos

Hi,

I think ur question is answered.

Check view D010SINF.

Regards

AK

0 Kudos

Hi,

of the fields given below, which contains the name of the user who executed it last?

ABAP program name

ABAP: Program Status (Active, Saved, Transported...)

Source code protection

Editor lock flag

Logical database

Program class

Selection screen version

Automatically generated program

Program type

Application

Authorization Group

Author

Created on

Version number

Level

Status

Client

Master Language

Last changed by

Changed On

Dictionary: time of last change

ABAP/4: Length of a program component

Case-Sensitive

Application database

Fixed point arithmetic

Start only via variant

Standard selection screen generation: Date

Standard selection screen generation: Time

Selection screen generation: Date

Selection screen generation: Time

LDB name

Flag, if unicode check was performed

Maximum Length of Source Code Line

Source Code (Compressed)

thanks,

prasy

0 Kudos

hi prasy,

are you not getiing what u want from Last changed by

.in that case what exactly do u want?

0 Kudos

Rahul,

I said execution details not modification details. Plz read the post before answering.

Regards,

prasy

Former Member
0 Kudos

Hi Prasy,

unfortunately there is no standard transaction to satisfy your requirement.the best solution is insert a small code in your report for which you want the userlastexecuted,date and time.

means create a Ztable with the fields username type uname,time type time,date type date.

insert the following code in your program.

types:begin of ty_udata,

uname type uname,

time type time,

date type date,

end of ty_udata.

data:it_udata type table of ty_udata,

wa_udata type ty_udata.

wa_udata-uname = sy-uname.

wa_udata-time = sy-uzeit.

wa_udata-date = sy-datum.

append wa_udata to it_udata.

insert into ztable from table it_udata.

the above code will insert the username,time and date when a user executed the report.

<REMOVED BY MODERATOR>

Edited by: Alvaro Tejada Galindo on Apr 15, 2008 4:13 PM