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

Interactive Report

Former Member
0 Likes
573

Hi All,

Please tell me about Interactive reports or Give some examle.I have never use it before.can anybody give some document about it.

thanks and regards

rashmi

5 REPLIES 5
Read only

Former Member
0 Likes
548

Check this thread to get more idea about ALVs.

DIRLL DOWN AND INTERACTIVE REPORT

http://www.sap-img.com/abap/difference-between-drilldown-report-and-interactive-report.htm

Rewards if useful..........

Minal Nampalliwar

Read only

Former Member
Read only

Former Member
0 Likes
548

In T-Code 'ABAPDOCU' take the following path in the nevigetion window in the left hand side:

ABAP user dialogs -> lists -> user actions on lists.

you will get a lott of small model code related to interactive reports.

Read only

Former Member
0 Likes
548

hi,

here are d folowing links which will able u to guide to make an interactive reports:-

plz do give points also.

regrads,

ric.s

Read only

Former Member
0 Likes
548

Hi,

As the name suggests, the user can Interact with the report. We can have a drill down into the report data. For example, Column one of the report displays the material numbers, and the user feels that he needs some more specific data about the vendor for that material, he can HIDE that data under those material numbers.

And when the user clicks the material number, another report (actually sub report/secondary list) which displays the vendor details will be displayed.

We can have a basic list (number starts from 0) and 20 secondary lists (1 to 21).

Events associated with Interactive Reports are:

AT LINE-SELECTION

AT USER-COMMAND

AT PF<key>

TOP-OF-PAGE DURING LINE-SELECTION.

HIDE statement holds the data to be displayed in the secondary list.

sy-lisel : contains data of the selected line.

sy-lsind : contains the level of report (from 0 to 21)

Interactive Report Events:

AT LINE-SELECTION : This Event triggers when we double click a line on the list, when the event is triggered a new sublist is going to be generated. Under this event what ever the statements that are been return will be displayed on newly generated sublist.

AT PFn: For predefined function keys...

AT USER-COMMAND : It provides user functions keys.

TOP-OF-PAGE DURING LINE-SELECTION :top of page event for secondary list.

Hope this helps u.

Regards,

Ruthra