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

difference between Interactive report and ALV Interactive report.

Former Member
0 Likes
1,075

What is the difference between Interactive report and ALV Interactive report.

i think there is no much difference the same Interactive report Events and functionality we will implement with ALV.

Experts guide me.

5 REPLIES 5
Read only

Former Member
0 Likes
662

Read only

Former Member
0 Likes
662

Hi,

in classical interactive reports

we will trigger the next lists by using

at line selection event

and depending on the values we will call the next lists

and in the alv interactive

we will be using the

user_command which is a dynamic form written

and depending on the clicks like on clicking the button

or clicking a record

then slis_selfield structure will be populated and depending

according to our requirements we will be following the codes..

reward points if helpful,

thanks & regards,

venkatesh

Read only

Former Member
0 Likes
662

Hi

if u go for alv report events there are so many as per u r req,

if u check in slis and u can perform u r own events by passing the value to

I_CALLBACK_USER_COMMAND

Reward points if it is helpful.

thanks.

Message was edited by:

KIRAN KUMAR

Read only

Former Member
0 Likes
662

Hi,

ALV interactive report gives many advantages than interactive report like sorting, summing and getting graphics.

An interactive report generally basic list displayed. User double clicks on any valid line or user selects a line and presses as button on the tool bar. Then the corresponding event is triggered

refer

http://www.sapgenie.com/abap/drill_down_reports.htm

You can find a interactive ALV report here

http://www.sap-img.com/abap/an-interactive-alv-report.htm

also refer

Below threads consist of number of interactive ALV codes:

Regards

Read only

Former Member
0 Likes
662

hello

In interactive reports we use at-line selection and hide keywords to pass user action and field value

alv interactive reports are two types

1). alv list interactive reports - in this we can use 'USER_COMMAND' like

sy- ucomm and sel like slis_selfield

'USER_COMMAND' is equivalent to at-lineselection

sel is equivalent to hide

2) alv grid display - in this we can use DOUBLE CLICK event with erow and

ecolumn

bye