Code: Alles auswählen.
CONSTANTS:
"! 'me'
repid TYPE syrepid VALUE sy-repid.
DATA:
"! Selection Screen content
"! (tables parameter -> must be std. table w/o empty key)
selection_screen TYPE STANDARD TABLE OF rsparams.
CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
EXPORTING
curr_report = repid
TABLES
selection_table = selection_screen
EXCEPTIONS
not_found = 1
no_report = 2
OTHERS = 3.