1
Achieving Page Breaks using ALV Grid It is assumed that the reader of the article has knowledge in ALV Grid Programming. In order to achieve the Page Breaks, we need to fill in the sort catalog structure, LVC_S_SORT, as follows: FS_SORT-SPOS = '1'. “ Sort order position FS_SORT-FIELDNAME = 'CARRID'. “ Field name on which page break need to be triggered. Whenever this field changes, page break will trigger FS_SORT-GROUP = '*'. “ This has 2 options. ‘*’ for page breaks and ‘U’ for underlines. FS_SORT-OBLIGATORY = 'UL'. “ If you need to retail these page breaks through out, we need to set this as obligatory. Otherwise, if the end user selects any other field and presses SORT, then page breaks would disappear. APPEND FS_SORT TO T_SORT. However, in ALV grid, you will not be able to see the page breaks on the screen. Once you convert the ALV grid to “List Output”, you could see the page breaks or during print from the ALV grid.

Achieving Page Breaks Using ALV Grid

  • Upload
    mdwaris

  • View
    37

  • Download
    0

Embed Size (px)

DESCRIPTION

page break

Citation preview

Page 1: Achieving Page Breaks Using ALV Grid

Achieving Page Breaks using ALV Grid

It is assumed that the reader of the article has knowledge in ALV Grid Programming.

In order to achieve the Page Breaks, we need to fill in the sort catalog structure, LVC_S_SORT, as follows:

             FS_SORT-SPOS = '1'.                     “ Sort order position

FS_SORT-FIELDNAME = 'CARRID'.  “ Field name on which page break need to be triggered. Whenever this field changes, page break will trigger

FS_SORT-GROUP  = '*'.                  “ This has 2 options. ‘*’ for page breaks and ‘U’ for underlines.

FS_SORT-OBLIGATORY = 'UL'.       “ If you need to retail these page breaks through out, we need to set this as obligatory. Otherwise, if the end user selects any other field and presses SORT, then page breaks would disappear.

APPEND FS_SORT TO T_SORT.

However, in ALV grid, you will not be able to see the page breaks on the screen. Once you convert the ALV grid to “List Output”, you could see the page breaks or during print from the ALV grid.