Application Development 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: 

In Interactive Report Number of Secondary Lists

Former Member
0 Kudos

Hi SAP Guru`s,

I am new to ABAP, How we can generate more than 20 secondary lists in Interactive Report & ALV Interactive Report?after reaching 20secondary lists what we have to write for generating further lists? plz help me out.

thanks in advance

points will be reward to answers

venkatreddy

1 ACCEPTED SOLUTION

suresh_datti
Active Contributor
0 Kudos

Th Std max is 20.. some workarounds have been suggested in this <a href="https://forums.sdn.sap.com/click.jspa?searchID=3569891&messageID=3522283">Thread</a>.. may be you can try them out..

~Suresh

4 REPLIES 4

suresh_datti
Active Contributor
0 Kudos

Th Std max is 20.. some workarounds have been suggested in this <a href="https://forums.sdn.sap.com/click.jspa?searchID=3569891&messageID=3522283">Thread</a>.. may be you can try them out..

~Suresh

Former Member
0 Kudos

Hi Venkat,

Highly impossible to generate more than 20 secondary list both normal Interactive report and ALV Interactive Reports.

If you double click on 20th list,you get short dump because SAP Written code upto 20 list.

I think it is interview question ,say that Short dump will come.

Thanks

Seshu

Former Member
0 Kudos

Hi Venkat,

You can generate a maximum of 20 secondary lists as per SAP standard. There is definetly a work-around as Suresh suggested, but it is not advisable. The program will dump if you try generate more than 20 secondary lists.

Reward if useful.

Thanks

Aneesh.

former_member225631
Active Contributor
0 Kudos

Use if condition.

If sy-lsind = '20'.

sy-lsind = '1'.

endif.