cancel
Showing results for 
Search instead for 
Did you mean: 

SCREEN RESOLUTION

Former Member
0 Kudos

how to set the screen resolution using the system field SY-SROWS?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

For BDC :

data: f_option type ctu_params,

f_option-updmode = 'S'.

f_option-defsize = 'X'.

f_option-dismode = 'N'.

call transaction 'XK01' using bdcdata options from f_option messages into bdcerror.

Scrolling Window by Window

To scroll through a list vertically by the size of the current window and independent of the page length, use the following statement:

Syntax

SCROLL LIST FORWARD|BACKWARD [INDEX <idx>].

If you do not use the INDEX addition, the statement scrolls forward or backward by one whole window in the current list. If you use the INDEX <idx> addition, the system scrolls in the list with the level <idx>. For more information on scrolling in list levels, see Scrolling through Interactive Lists.

REPORT demo_list_scroll_1 NO STANDARD PAGE HEADING LINE-SIZE 40.

TOP-OF-PAGE.

WRITE: 'Top of Page', sy-pagno, 'SY-SROWS:', sy-srows.

ULINE.

START-OF-SELECTION.

DO 100 TIMES.

WRITE / sy-index.

ENDDO.

DO 3 TIMES.

SCROLL LIST FORWARD.

ENDDO.

Reward Points if it is helpful

Thanks

Seshu