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

Module pool

Former Member
0 Likes
596

What is PAGE DOWN concept in module pool ?

4 REPLIES 4
Read only

Former Member
0 Likes
575

Hi,

Page down means generally after we get output if we have N no. of pages we will use next page. It also will work in the same way in table control. here we need to set the status , we will get the last line as our first line.

Thanks,

madhuri

Pls reward me if it is useful

Read only

Former Member
0 Likes
575

Its the same concept which is commonly used.

like the following,

Page Up

Page Down,

First Page

Last Page

please, CLSOE the thread if answered.

Thanks,

Ashwani

Read only

Former Member
0 Likes
575

actullay the page down in Module pool is to limit the number of entries per screen .

say fifteen entries per list now when i do a page down by handling with a code

1..15

after page down

the list will be a new series in the table control .

now the list has to be 16..31 ..

and again page down 32--47 and so on

generally when we do the recording we generally encounter a code like

'p' , 'p-' , 'p+' , 'p--'

for page scrolling options .

when the entries are exceeding visible list in the table we need to handle this by page down options in some cases .

refer this std program demo_dynpro_tabcont_loop

in this code just see how page control is being handled.

regards,

vijay

Read only

Former Member
0 Likes
575

<b>Once the last visible row in table control is reached you have to find a OK CODE to create a new page.

If there is a scroll bar besides the table control you can use P+ (means page down) .

If there is no scroll bar then you need to look for the new page button on the tool bar of the transaction and record its OK code.</b>