REFRESH LAYOUT
Posted springzt
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了REFRESH LAYOUT相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
refresh是什么?Spring refresh的12个步骤
Springboot actuator refresh 和 bus-refresh 总是返回 401 Unauthorized
AbstractApplicationContext(Spring)下refresh()方法的用途是啥?为啥使用 refresh() 后 bean 单例范围丢失?