‎2009 Sep 22 5:06 AM
HI ,
I have one Doubt in Interactive reporting ( I am in 15th interactive list , how we can navigate form 15th interactive list to 5th interactive list ) means if i click a perticular field in 15th interactive list it navigate to 5th interactive list .
Which logic i have to use for this .
Regards,
SHAIK.
‎2009 Sep 22 5:14 AM
Hi
Try this way.
Thanks
venkat.O
AT LINE-SELECTION.
CASE SY-LSIND.
WHEN 15.
SY-LSIND = 5.
ENDCASE.
‎2009 Sep 22 5:16 AM
Hi,
When sy-lsind = 15, Use the AT LINE-SELECTION event and set sy-lsind = 5. This will take you to the 5th list from the 15th list
Regards,
Vikranth
‎2009 Sep 22 5:45 AM
Hi Shaik,
USe this.
AT LINE-SELECTION.
CASE SY-LSIND.
WHEN 15.
SY-LSIND = 5.
WHEN OTHERS
ENDCASE.
Regards,
Vijay
‎2009 Sep 22 6:10 AM
Hi SHAIK JAILABDIN ,
You are in 15th list, going to click a row.
you have created a list using a loop at it.
at line selection will trigger,
if sy-lsind = 15 and ' selected line from it'.
sy-lsind = 5.
endif.
instead of case...endcase
try using seperate if...endif. for each list