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 ...
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...
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...
Value 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 cannot be changed by application developers.● readOnlySpecifies whether the user can select the RadioButton or ...
SAP Managed Tags: ABAP Development 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 the radio group 'GP1' has already been defined in the block 'BLK1'] SELECTION-SCREEN ...
Hi: I have a requirement, i have the following field in a view This field it's supossed to be hidden, and a radiobuttongroup has to have the entered value for example:
SAP Managed Tags: ABAP Development, SAP HANA Hi All, I want to hide the 2 radio buttons on the selection screen using the NO-DISPLAY option. when i worked with that its giving an error like 'no-display and radio button group can be specified together'. my question was is it possibl...
SAP Managed Tags: ABAP Development Hi, The programs in which you dont want the radiobuttons to be displayed, you will have to write the code in the AT SELECTION-SCREEN on output. loop at screen. case screen-name. when xxx. " radio button 1 screen-active = 0. when yyyy " radio ...
In der Darstellung am Bildschirm unterscheiden sich die beiden RadioButtonGroup-Oberflächenelemente RadioButtonGroupByKey und RadioButtonGroupByIndex nicht. Jedoch verfolgt das Datenbindungsmodell für das RadioButtonGroupByKey-Oberflächenelement ein völlig anderes Konzept (siehe Abschnitt Da...
SAP Managed Tags: ABAP Development Hi all, In my module pool program, i have two radio buttons, one is upload and other Download. download(radio button) is set as default, when download(radio button) is not initial some fields to be made input-disabled. it is working fine, but whereas...