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: 

what is meant by stacked list

Former Member
0 Kudos

hi

what is meant by stacked list

2 REPLIES 2

Former Member
0 Kudos

Hi,

A Stacked list is nothing but secondary list and is displayed on a full-size screen unless you have specified its coordinates using the window command.

Look into the following link..

www.geocities.com/Paris/Rue/8654/abap2.html

Regards,

Aparna

Message was edited by:

Paluri Aparna

Former Member
0 Kudos

Hi Jyothsna,

A stacked list is a list used in Module Pool programming.

In an ideal scenario,you will define the screen sequence in either a static or a dynamic way.

By the statc way,you define the next screen and enter the next screen's value in it.

By the dynamic way,you code the statement CALL SCREEN XXX where the XXX means the screen number.The dynamic way overrides the static way of defining the screen sequences.

Now,if you want to insert a screen sequence,i.e a sequence of screens which are not defined in the same ABAP program,you either do it by static or the dynamic way again using the above constructs.

But in this case,a stack is loaded for a screen sequence and the screens are processed based on the sequence defined in it.

Before leaving this screen sequence,you should always destroy or delete it usng the keyword LEAVE as it occupies a lot of memory.

In case you have any further clarifications,do let me know.

Regards,

Puneet Jhari.