点击屏幕上的按钮时,SY-UCOMM这个系统字段会记录当前点击按钮的功能代码,BU一般作为系统的保存按钮的功能代码,SY-UCOMM='BU'就表示用户点击保存 屏幕,PAI 触发的功能代码。
Dynamic GUI STATUS & TITLE with ABAP code create dynamically buttons on GUI STATUS. You can change icon or text if you defined that function has... Yes, that's all from the code point of view in this program. As said it's only to keep GUI STATUS and sap 实现图表几种方式 USER...
SAP Managed Tags: ABAP Development It is a system field used to check the function code assigned to an icon or button when the user performs some action on that particular button. In general it is used in Modulepool programming to capture the action performed by the user like BACK, EXIT...
SAP Managed Tags: ABAP Development hi experts , regarding the difference between ok_code and sy-ucomm i searched and found this lines... answer::: In the same way that the OK_CODE field in the ABAP program and the system field SY-UCOMM <b>receive the contents of the corresponding...
SAP Managed Tags: ABAP Development, SAP Business Workflow Hi, When will OK_CODE or SY_UCOMM have the value 'ENTER' in module pool programs? Please reply. Thanks and regards, PramodKnow the answer? Help others by sharing your knowledge. Answer Need more details? Request clarification before...
SAP Managed Tags: ABAP Development Hi Josh, SAP recommends that in dialog program always use OK_Code instead of sy-ucomm. Here is what the help says In your ABAP programs, you should work with the OK_CODE field instead of SY-UCOMM. There are two reasons for this: Firstly, the ABA...
SAP Managed Tags: ABAP Development Hello, sy-ucomm is for doing the functions what the user wishes to do at that particular event. You use it in menus and other place . this mainly in using <pfstatus> ok_code is generally used in screen as of I have used. You will define the ...
SAP Managed Tags: ABAP Development Hi mrwhite, sy-ucomm set with space when you are scrolling in tablecontol. you must use this command : form user_comman_0100. ok_code = sy-ucomm. clear sy-ucomm. check ok_code is not initial. case ok-code. when. ... .. . Reply Former...
sy-ucomm not calling for selection-screen after using call selection-screen in main program. Go to solution former_member339717 Active Participant 2014 Dec 10 8:20 AM 0 Kudos 1,477 SAP Managed Tags: ABAP Development Dear Gurus, I am using docking container. I have come ...