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
536

hai experts ,

is there any possibulity to go upto 30th sublist , is there possibility means pls send the code .

Regards ,

Nagendra.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
508

hi,

sap offers you only 21 secondary lists.

so what u do is when u r 20th list comes

<b>check for sy-lsind</b>

code;;;

if sy-lsind = 20.

submit report <report_21(21st report ) >.

endif.

then use this report and assign next coming lists and reach 30th list in this way .

cheers!

4 REPLIES 4
Read only

Former Member
0 Likes
508

Hello,

Only 21 secondary list is allowed . If u try to move to 22 list u will get the ABAP runtime error.

Vasanth

Read only

Former Member
0 Likes
508

we can have only 21 (including the basic list).

Once you reach the 20th secondary list, you have to call another report to have 21 more .

at line-selection.

if sy-lsind = 20.

submit zprog2. "Create zprog2 program before

endif.

Read only

Former Member
0 Likes
508

No... it is not possible..

U cannot have more than 20 detailed lists....

if u try to go further runtime error occurs...

Read only

Former Member
0 Likes
509

hi,

sap offers you only 21 secondary lists.

so what u do is when u r 20th list comes

<b>check for sy-lsind</b>

code;;;

if sy-lsind = 20.

submit report <report_21(21st report ) >.

endif.

then use this report and assign next coming lists and reach 30th list in this way .

cheers!