‎2007 Apr 24 6:23 AM
in interactive reports, now i'm in 10th secondary list, i'm thinking i'll go to 5th secondary list, can i directly go to 5th secondary list, is it possible ?
‎2007 Apr 24 6:25 AM
Hi,
at line -selection.
if sy-lsind = 10.
sy-lsind = 5.
endif.
reward if helpful.
regards,
kiran kumar k
‎2007 Apr 24 6:25 AM
Hi,
it snot possible because except the basic list all the secondary list are generated dynamically. u can only navigate back to basic list
regards,
Navneeth.K
‎2007 Apr 24 6:27 AM
Hi,
Try like this.......
<b>at line-selection.
If sy-lsind = 10.
sy-lsind = 5.
endif.</b>
Regards,
‎2007 Apr 24 6:31 AM
‎2007 Apr 24 6:45 AM
Hi,
u can call using sy-lsind = 5
in a condition.
rushi tedlapu.
‎2007 Apr 24 7:22 AM
Hi ALL,
In interactive reports, we have 1 basic list , 20 secondary lists..
when we go for 21st .. the prg will gives the Short Dump..
so any soution is there , that i want navigating to 21st list with out DUMP.
reply plz..
regards,
Vijay.
‎2007 Apr 24 8:32 AM
hi vijay,
use SUBMIT <report>(give the same report name). to proceed for 21st list.
Regards
Seshu
‎2007 Apr 24 9:42 AM
hi vijay,
use SUBMIT <report>(give the same report name). to proceed for 21st list.
and try this code....
REPORT ytest1.
data : i type i value 10.
data : testxyz type string .
START-OF-SELECTION.
WRITE 'Click me!' COLOR = 5 HOTSPOT.
AT LINE-SELECTION.
WRITE: / 'You clicked list', sy-listi,
/ 'You are on list', sy-lsind.
IF sy-lsind < 20.
SKIP .
WRITE: 'More ...' COLOR = 5 HOTSPOT.
else.
submit ytest1 .
ENDIF.
Regards
Seshu
Message was edited by:
maddipatla Seshu chowdary