在ABAP的report类程序中,如果你希望在选择屏幕上动态输出radio button,可以利用loop sreen功能设置相应的值来实现这一需求。具体操作中,当用户选择某个按钮后,通过设置sreen的相关参数,可以动态生成所需的radio button。而如果是在使用write方式输出报表时,建议采用WRITE XXX AS CHECKBOX的方式,并通过...
PARAMETERS: r_yj TYPE c AS CHECKBOX USER-COMMAND ucomm (这个是关键) MODIF ID m1,r_fyj TYPE c AS CHECKBOX USER-COMMAND ucomm MODIF ID m1.然后在事件 AT SELECTION-SCREEN OUTPUT. 这里面写代码就可以了
SAP Managed Tags: ABAP Development hai friends i use 2 radio buttons in se38 prg. it is display in one by one for eg: inches (parameter) MM (parameter) radiobutton1 radiobutton2 but i want inches (parameter) radiobutton1 MM (parameter) radiobutton2 thanks & regards vallamuthuReply...
如果你是在选择屏幕上,选择某个按钮之后,动态输出radio button,只需要loop sreen设置相应的值即可实现改需求。如果是write的方式输出报表,建议使用WRITE XXX AS CHEKBOX,加校验的方式实现。write xx as radio button 没这种用法的。
Runtime Class CL_WD_RADIOBUTTON Properties in the View DesignerName Type Initial Value Bindable ID STRING (automatic) No activateAccessKey WDY_BOOLEAN false No contextMenuBehaviour WDUI_CONTEXT_MENU_BEHAVIOUR inherit No contextMenuId WDY_MD_UI_ELEMENT_REFERENCE No enabled WDY_BOOLEAN true ...
首先界面是这样的 FORM DOWNLOAD_TEMPLATE . CREATE OBJECT G_APPL 'EXCEL.APPLICATION'. SET PROPERTY OF G_APPL 'VISIBLE' = 0. CALL METHOD OF G_APPL 'WORKBOOKS' = G_WORK. CALL METHOD OF G_WORK 'Add' = G_WORK. GET PROPERTY OF G_APPL 'ActiveSheet' = G_...
SAP Managed Tags: ABAP Development HI you have to do this using modif id. here is a sample program to do this PARAMETERS show_all radiobutton group g1 USER-COMMAND flag. PARAMETERS no_show radiobutton group g1 default 'X'. SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME. PARAMETERS: p1...
P_R2 RADIOBUTTON GROUP G1. SELECTION-SCREEN:END OF BLOCK B1. AT SELECTION-SCREEN OUTPUT. IF P_R1 IS NOT INITIAL. LOOP AT SCREEN. IF SCREEN-GROUP1 = 'SG' . SCREEN-ACTIVE = '0'. ENDIF. MODIFY SCREEN. ENDLOOP. ELSEIF P_R2 IS NOT INITIAL. ...
Solved: Hi all, I have a problem. Is there some way to creat selection-screen button (the same radiobutton group) in different blocks. the err message is [A parameter of
See Help Texts in and for Web Dynpro ApplicationsThis property can be personalized by an administrator.● keyToSelectValue of the key used to select this RadioButton.● keyVisibleThe key is also selected with the RadioButton.Note that this property is not visible to the API, which means it...