abap中user-command什么意思?

来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/06 04:56:25
abap中user-command什么意思?abap中user-command什么意思?abap中user-command什么意思?user-command中主要实现事件比如双击事件回车事件触发的动作

abap中user-command什么意思?
abap中user-command什么意思?

abap中user-command什么意思?
user-command 中主要实现事件 比如双击事件 回车事件触发的动作 如:
form usercommand using r_ucomm like sy-ucomm
rs_selfield type slis_selfield.
if r_ucomm = '&IC1'. ------------双击事件
if rs_selfield-value = 'other'.
perform pl_information using rs_selfield.
endif.
endif.
endform.