IF SCREEN-NAME = ‘P_LIST1′ . SCREEN-INPUT = 0 . MODIFY SCREEN . ENDIF . ENDLOOP . *–〉都没有选择,都清空且不能输入 ELSEIF P_CB1 = ” AND P_CB2 = ” . CLEAR: P_LIST1,P_LIST2 . LOOP AT SCREEN . IF SCREEN-NAME = ‘P_LIST1′ . SCREEN-INPUT = 0 . MODIFY SCREEN . ...
原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:【MM系列】SAP ABAP ALV中设置CHECKBOX同时选中事件 回到顶部 前言部分 大家可以关注我的公众号,公众号里的排版更好,阅读更舒适。 回到顶部 正文部分 自己测试内容,仅供参考。
如果是这样子的话那一做一张复选框的图片然后在需要添加复选框的栏位添加该图片但是不知道为啥你要在单据上添加这个东西在SMARTFORMS中用个条件控件,如果传入数据为X时,TEXT控件中为[√],如果为空时,TEXT控件中为[]不就得了。 或者TEXT控件换成图片的控件,找两张图片,一张是打钩的,一张没打...
ABAP之Module pool program 2019-12-05 09:35 −module pool program: screen type:slection dynpro 选择屏幕的屏幕subscreen 子屏幕model dialog box 对话框屏幕 element list:显示屏幕上的元素列表,其中gv_ok_code是不显示的,它是用来获取页面的function... ...
Properties in View DesignerName Type Initial Value Bindable ID STRING (automatic) No activateAccessKey WDY_BOOLEAN false No checked WDY_BOOLEAN false Mandatory contextMenuBehaviour WDUI_CONTEXT_MENU_BEHAVIOUR inherit No contextMenuId WDY_MD_UI_ELEMENT_REFERENCE No enabled WDY_BOOLEAN true Yes...
A CheckBoxGroup is a multiple selection displayed as a group of Checkboxes on the screen. The view context must provide the node X that can contain 0 to n values (cardinality=0..n). The context node must contain an attribute y that provides the texts for the CheckBoxes fields. The data...
SAP Managed Tags: ABAP Development Hi Oscar, In the AT SELECTION-SCREEN OUTPUT event write as below. PARAMETER: pa_test type c as checkbox. AT SELECTION-SCREEN OUTPUT . loop at screen. if screen-name cs 'PA_TEST'. screen-input = 0. endif. modify screen. endloop. This will make the...
SAP Managed Tags: ABAP Development Hi, I have created a checkbox in a table of webdynpro view. On toggle, i have created an action in which i'm disabling a button when the user check the checkbox. That is working fine. But when i check on checkbox in the table, all of checkboxes...
SAP Managed Tags: ABAP Development I know you can do this via GoTo in the menu in the top, but I'm wondering how do you code a checkbox parameter that would show a text longer than 8 characters. Example: SELECTION-SCREEN BEGIN OF BLOCK selection1 WITH FRAME. SELECT-OPTIONS s_vbeln ...
SAP Managed Tags: ABAP Development Hi Shwetha, As per above answer i am agreeing. Just prepare one button on the application tool bar for downloading. Based on user selection records should be downloaded, Right? Then while preparing ALV events pass user command also. In user command routine ...