码迷,mamicode.com
首页 > 其他好文 > 详细

REFRESH LAYOUT

时间:2019-12-25 13:25:39      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:nbsp   color   port   exp   ble   class   number   sgi   pid   

FORM set_layout .
  DATA:
    ltd_select     TYPE TABLE OF rsparams.

  CLEAR:td_alv2.
  CLEAR ltd_select.
  REFRESH ltd_select.
  CALL FUNCTION ‘RS_REFRESH_FROM_SELECTOPTIONS‘
    EXPORTING
      curr_report     = sy-repid
    TABLES
      selection_table = ltd_select
    EXCEPTIONS
      not_found       1
      no_report       2
      OTHERS          3.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
  SUBMIT (sy-repid) VIA SELECTION-SCREEN
        WITH SELECTION-TABLE ltd_select.

ENDFORM.

REFRESH LAYOUT

标签:nbsp   color   port   exp   ble   class   number   sgi   pid   

原文地址:https://www.cnblogs.com/springzt/p/12095937.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!