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
460

Is it possible to handle runtime error in interactive report after 20th detail list.

3 REPLIES 3
Read only

bpawanchand
Active Contributor
0 Likes
430

Hi

I got you question you mean to ask that if you double click on the 20th list index again you need to go to 21st list if this is what you want then yes you can do this but what you have to do is you need to call other program and pass the entire report result to the other program and then again you can get more 20 secondary lists.

what kind of runtime errors you want to handle in the 20th list

Regards

Pavan

Read only

Former Member
0 Likes
430

Hi Mahesh,

Write this code.

if sy-lsind GE 20

Message 'further list not possible'.

stop.

endif.

Regards,

Sravanthi.

Read only

former_member787646
Contributor
0 Likes
430

Hi

By checking the SY-LSIND variable you can do that.

Hope this would help you.

Murthy