perform pl_information using rs_selfield.endif.endif.endform.指令(一串密码)操作指南交互式列表 事件下列事件是 交互式列表 环境特有的 :AT LINE-SELECTIONAT PF<nn>AT USER-COMMAND如果在程序中为这些事件之一定义处理块,则程序可以对某些用户动作做出反应 。如果用户随后执行显示列表中的已定义的...
我是ABAP开发 定义了状态和user_command没有显示有以下可能(我想到什么说什么):首先你要确定user_command里面的代码没有问题(包括功能吗和状态里写的能对应上,不然肯定不响应的)你会出现这样的问题 估计是新手 代码应该是COPE过来的 不会有问题 问题应该出现在状态设置中 状态的设置也很简单 就是把功能...
ENDFORM. " ALV_USER_COMMAND 运行效果:
r_exit = ls_selfield-exit. endform. "user_command
perform user_command using l_okcode lflg_refresh lflg_exit ls_stable. if lflg_exit = 'X'. e_exit_caused_by_caller = 'X'. perform exit. else. * IF LFLG_REFRESH = 'X'. if not lflg_refresh is initial. if lflg_refresh = 'X'. ...
AT USER-COMMAND.Effect This statement defines an event block whose event is triggered by the ABAP runtime environment if, during the display of a screen list, a function with a self-defined function code was chosen.这个是需要一个自定义的function code来触发的 也就是 SET PF-STATUS...
ALV help-User Command Former Member 2007 Jul 30 8:46 PM 0 Kudos 151 SAP Managed Tags: ABAP Development Hi, I have a simple ALV grid display. When I right click on the line, I have an option called 'Details' which gives me that line details in the form of a pop-up. ...
abap里面的AT USER-COMMAND事件到底怎么用啊.SELECTION-SCREEN PUSHBUTTON /1(20) PUBU1 USER-COMMAND ABCD.SELECTION-SCREEN SKIP.SELECTION-SCREEN PUSHBUTTON /1(20) PUBU2 USER-COMMAND ABCE.AT USER-COMMAND.CASE sy-ucomm.WHEN 'ABCD'.MESSAGE I005(Ms
SAP Managed Tags: ABAP Development can u help abt the usage of user-command in detail with examples ?Reply 1 ACCEPTED SOLUTION Former Member 2007 Sep 13 5:46 PM 0 Kudos 127 SAP Managed Tags: ABAP Development Hi, Check the link below. It gives you detailed description. http:/...
SAP Managed Tags: ABAP Development Do this: CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_top_of_page = 'TOP-OF-PAGE' i_grid_title = 'Title goes here' i_callback_program = program i_grid_settings = grid_setting i_callback_user_command = 'DOUBLE_CLICK_ON_ALV' is_la...