cancel
Showing results for 
Search instead for 
Did you mean: 

SCROLLING IN REPORT

Former Member
0 Kudos

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

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

hi,

is this code correct?

the select and de loop are in the top-of-page event?

Do you want a button to go to the last page or you want view the list starting with last page?

bye enzo