‎2006 Oct 06 7:42 AM
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?
‎2006 Oct 06 7:44 AM
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
‎2006 Oct 06 7:44 AM
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
‎2006 Oct 06 7:45 AM
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...
‎2006 Oct 06 7:46 AM
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.
‎2006 Oct 06 7:47 AM
‎2006 Oct 06 7:46 AM
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
‎2006 Oct 06 7:46 AM
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
‎2006 Oct 06 7:54 AM
Hi,
At LINE-SELECTION.
CASE SY_LISND.
WHEN 15.
sy-lsind = 5.
______
________
_________
ENDIF.
Regards,
Pradhan.
‎2006 Oct 06 8:00 AM
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....
‎2006 Oct 06 12:12 PM
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,