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
826

If I am in 15th Secondary List how to navigate to 5th Secondary List?

What are EVENTS In Interactive Report?

How many secondary Lists u can create in a Report?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
803

AT LINE SELECTION is the event which is used for intercative reporting.

You can have 1 basic list and 19 detail lists.

Best Regards,

Vibha Deshmukh

*Plz mark useful answers

9 REPLIES 9
Read only

Former Member
0 Likes
804

AT LINE SELECTION is the event which is used for intercative reporting.

You can have 1 basic list and 19 detail lists.

Best Regards,

Vibha Deshmukh

*Plz mark useful answers

Read only

Former Member
0 Likes
803

hi,

1. ---

2. in interactive reporting, we have <b>AT LINE-SELECTION</b>, <b>AT USER-COMMAND</b> and <b>TOP-OF-PAGE DURING LINE-SELECTION</b>.

3. u can have <b>20 secondary</b> lists alongwith <b>1 basic</b> list. total 21.

hope this helps..

reward if useful...

Read only

Former Member
0 Likes
803

hey,

u can create 20 secondary lists

and if u want to navigate from 15 to 5 secondary list

just set the sy-lsind system variable to 5

events in interactive list

At line-selection.

top of page during line selection.

at user command.

Read only

0 Likes
803

20 secondary lists and 1 basic list

mark if help full

Read only

Former Member
0 Likes
803

Also have a look at below link.

http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba2eb35c111d1829f0000e829fbfe/content.htm

Best Regards,

Vibha Deshmukh

*Plz mark useful answers

Read only

Former Member
0 Likes
803

hi,

interactive report events.

top of page during line selection : top of page event for secondary list.

at line-selection : evey time user dbl-clicks(F2) on the list data.

at pF<key> : function key from F5 to F12 to perform interactive action on the list.

max no of secondary lists - 20

Read only

Former Member
0 Likes
803

Hi,

At LINE-SELECTION.

CASE SY_LISND.

WHEN 15.

sy-lsind = 5.

______

________

_________

ENDIF.

Regards,

Pradhan.

Read only

0 Likes
803

Suppose the end user in 15 th secondary list and he wants to go to 5th secondary list.how? does he need to push the back button 10 times or is there any shortcuts....

Read only

shishupalreddy
Active Contributor
0 Likes
803

Hi ,

To go back to the required level of interactive report

Tro to capture SY-LSIND value and change its value to the required level number

EX: AT LINE-SELECTION.

if SY-LSIND = 15.

SY-LSIND = 5.

ENDIF.

iN THIS WAY YOU CAN MAKE THE END USER TO GO BACK TO THE REQUIRED LEVEL .

regards,