Skip to Content
0
Former Member
Sep 30, 2005 at 06:07 AM

SCROLL LIST TO LAST PAGE

20 Views

Hi

I am not able to understand how 'SCROLL LIST TO LAST PAGE'

works

Here is the program.

TOP-OF-PAGE.

SET LEFT SCROLL-BOUNDARY COLUMN 1.

SELECT * FROM SFLIGHT INTO TABLE IT_SFLIGHT.

LOOP AT IT_SFLIGHT INTO WA_SFLIGHT.

WRITE AT : /

POS2(LEN_FDT) WA_SFLIGHT-FLDATE

(25) WA_SFLIGHT-PRICE CURRENCY WA_SFLIGHT-CURRENCY,

(35) WA_SFLIGHT-CURRENCY.

ENDLOOP.

SCROLL LIST TO LAST PAGE.

**********************************************************

Now this loop, gives me lot of rows. I want the control to take me to the last page. Can anyone explain how this works