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 reports

Former Member
0 Likes
910

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 ?

8 REPLIES 8
Read only

Former Member
0 Likes
884

Hi,

at line -selection.

if sy-lsind = 10.

sy-lsind = 5.

endif.

reward if helpful.

regards,

kiran kumar k

Read only

Former Member
0 Likes
884

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

Read only

Former Member
0 Likes
884

Hi,

Try like this.......

<b>at line-selection.

If sy-lsind = 10.

sy-lsind = 5.

endif.</b>

Regards,

Read only

Former Member
0 Likes
884

Please go thru this thread.

reward points if usefull.

Anil reddy

Read only

Former Member
0 Likes
884

Hi,

u can call using sy-lsind = 5

in a condition.

rushi tedlapu.

Read only

Former Member
0 Likes
884

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.

Read only

0 Likes
884

hi vijay,

use SUBMIT <report>(give the same report name). to proceed for 21st list.

Regards

Seshu

Read only

0 Likes
884

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