通过fm修改屏幕控件的selection text

  REPORT ztest_pillar.

TYPE-POOLS icon.

TABLES: mara, rsseltexts.

DATA gt_sel_text TYPE STANDARD TABLE OF rsseltexts.
data wa_sel_text type RSSELTEXTS.
field-symbols <fs_sel_text> type rsseltexts.

parameters zmat_nam type mara-matnr.


INITIALIZATION.
  wa_sel_text-name = 'ZMAT_NAM'.
  wa_sel_text-kind = 'P'.
  wa_sel_text-text = '@0M@ material'.
  append wa_sel_text to gt_sel_text.


at selection-screen output.
  CALL FUNCTION 'SELECTION_TEXTS_MODIFY'
    EXPORTING
      program                           = sy-repid
    tables
      seltexts                          = gt_sel_text.

你可能感兴趣的:(通过fm修改屏幕控件的selection text)