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: 

list

Former Member
0 Kudos

In case of interactive reporting while we go on displaying 20 lists which is the maximum number,Incase when last 20th secondary list is being printed,what will happen to the previous lists,will they exhist or removed from memory,if we want to see the previous lists what we have to do.can anyone explain indetail this LIST MAINTENANCE

1 ACCEPTED SOLUTION

Former Member
0 Kudos

previous repots remain in the memory. just press back button.

6 REPLIES 6

Former Member
0 Kudos

previous repots remain in the memory. just press back button.

Former Member
0 Kudos

hi

we have a total of 20 secondary lists...

we can navigate from one list to another either f3 or

in coding...set sy-lsind = <number of the list that u want to view>

the lists remains...butonly backward navigation is possible not fwd navigation.

Former Member
0 Kudos

Hi,

the lists should b in memory.

Former Member
0 Kudos

varma_narayana
Active Contributor
0 Kudos

Hi..

In interactive Report all the Previous lists will be in the Memory .

That means if you are in list 10, the Lists 0 to 9 will be in memory.

When you navigate from 10 to 9, The list 10 will be deleted from memory.

So the Lists are maintained in a STACK in memory.

We can access them using the READ LINE statement.

Refer to READ LINE documentation.

<b>Reward if Helpful</b>

Former Member
0 Kudos

hi sandeep

surely it will be in memory since it can store upto <b>21lists</b> (1 basic list and 20 secondary lists)....if it exists more than 20lists then it starts deleting the prev list n stores the new lists in memory...

if u wanna see the prev list jus use the system variable...sy-lsind which takes you to the list which u require like

<b>sy-lsind = 7.</b>

REWARD IF USEFUL....