syst这个structure中有ucomm字段,它是触发PAI的功能代码,sy-ucomm属于系统字段 通常我们定义ok_code为sy-ucomm类型,用来记录屏幕操作的功能代码,你可以理解为一个动作,就比如输T-code旁的右边三个按钮:Back(后退),Exit(退出),Cancel(取消),在你点击Back后,程序会用ok_code来记录你的动作Ba...
看帮助文档啊(同2楼). sy-ucomm 记录你的任何操作. 至于SY-UCOMM = ‘ONLI’.SY-UCOMM = ‘ ‘.根据你自己在GUI status 里面的定义其意义,图标等... 然后在程序中写出其执行的操作.在一般选择画面,ONLI = F8 , 空 = ENTER这些在status里面都可以自己设置的谢谢!check sy-ucomm = '...
save_ok LIKE sy-ucomm. Your ABAP program must contain a field with the same name as the OK_CODE field on the screen. To specify the type, you should refer to the system fieldsy-ucomm, since this always corresponds to the type of the OK_CODE field on the screen. At the same tim...
WHAT IS THE USE OF SY-UCOMM WHERE U WILL USE IT AND WHY Reply All forum topics Previous Topic Next Topic 3 REPLIES Former Member 2007 Jun 13 3:05 PM 0 Kudos 138 SAP Managed Tags: ABAP Development It is a system field used to check the function code assigned to an...
SY-UCOMM SY-DATUM SY-SUBRC SY-TABIX这4个系统变量各是( )含义。 A. 用户触发屏幕上的功能码 当前日期 当前时间 循环次数 B. 当前时间 当前日期 用户触发屏幕上的功能码 循环次数 C. 用户触发屏幕上的功能码 循环次数 语句执行结果返回值 当前日期 D. 用户触发屏幕上的功能码 当前日期 语句执行结果...
点击屏幕上的按钮时,SY-UCOMM这个系统字段会记录当前点击按钮的功能代码,BU一般作为系统的保存按钮的功能代码,SY-UCOMM='BU'就表示用户点击保存 屏幕
一般的Dynpro程序,Enter Key (回车) 不改变sy-ucomm! 这是标准Dynpro的要求。也是为什么在很多情况下按回车没有反应。要知道sy-ucomm的值,你必须读源程序,在screen PAI event module 中找OK_CODE 或sy-ucomm (常见的是 OK_CODE = sy-ucomm),放个break point, debug一下。debug...
Solved: 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
Value of sy-ucomm will be space for enter key. With luck, Pritam. You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in. Comment Comments (0) Former Member 2008 Dec 03 0 Kudos Hello Pramod, You need to ...
用户在屏幕进行操作后..syst这个structure中有ucomm字段,它是触发PAI的功能代码,sy-ucomm属于系统字段通常我们定义ok_code为sy-ucomm类型,用来记录屏幕操作的功能代码,你可以理解为一个动