PARAMETERS : R1 RADIOBUTTON GROUP D1 DEFAULT 'X' USER-COMMAND SINGLECLICK, 红色这一段话必须有,否则不能动态修改屏幕;选择一次单选框就会触发一次atselection-screen output,实现动态修改屏幕. SCREEN结构解释: 在SAP屏幕中,一个字段就像.NET中的一个控件,这个 字段对应一个SCREEN结构,就像控件的多个属性。 SE...
是的,可以操作SCREEN中所有元素的属性。
PARAMETERS:R1RADIOBUTTON GROUPD1DEFAULT'X'USER-COMMANDSINGLECLICK,红色这一段话必须有,否则不能动态修改屏幕;选择一次单选框就会触发一次atselection-screen output,实现动态修改屏幕. SCREEN结构解释: 在SAP屏幕中,一个字段就像.NET中的一个控件,这个字段对应一个SCREEN结构,就像控件的多个属性。 SE11可以查看SCREEN...
R2 RADIOBUTTON GROUP D1 . SELECTION-SCREEN: END OF BLOCK B3. 选择r1 的时候只显示B1;r2时候只显示B2 AT SELECTION-SCREEN OUTPUT. IF R1 = 'X'. LOOP AT SCREEN. IF SCREEN-GROUP1 = 'PP'. SCREEN-ACTIVE = '0'. ENDIF. MODIFY SCREEN. ENDLOOP. ELSEIF R2 = 'X'. LOOP AT SCREEN. IF S...
ABAP modify screen :修改屏幕,实现隐藏、禁止输入字段 Loop at screen 会 loop 处理屏幕上的每一个组件,并对其做相应的处理。 SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME. PARAMETERS S_DATE TYPE DATUM DEFAULT SY-DATUM MODIF ID OO. SELECTION-SCREEN: END OF BLOCK B1. ION-SCREEN: BEGIN OF ...
MODIFY SCREEN FROM wa.Effect This statement can be used in the statement block after LOOP AT SCREEN only and makes sense only during PBO processing. A work area wa of the type SCREEN from ABAP Dictionary must be specified after FROM. The statement modifies the attributes of the current ...
In folgendem PBO-Modul wird ein Eingabefeld namensvalobligatorisch gemacht und auf helle Anzeige umgestellt. MODULE modify_0100 OUTPUT. LOOP AT SCREEN INTO DATA(screen_wa). IF screen_wa-name = 'VAL'. screen_wa-required = '1'. screen_wa-intensified = '1'. ...
screen-active = '1'. ELSE. screen-active = '0'. ENDIF. MODIFY SCREEN. ENDIF. ENDLOOP. Amit. Reply Former Member In response to former_member181995 2008 Jul 01 3:07 PM 0 Kudos 8,013 SAP Managed Tags: ABAP Development Thanks for the reply. Example looks quite good. Pleas...
For a Maximum Segment Tree, which each node has an extra value max to store the maximum value in this node's interval. Implement a modify function wit IT 转载 mb5fe55be0b9ac7 2016-07-09 02:19:00 106阅读 2评论 ABAP MODIFY SCREEN SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME...
Solved: Hi! I would like to do some changes on the screen of the MM41 transaction. In MM01 I think I once copied the function group, did the screen modifications, and