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
PARAMETERS: P_Radio2 RADIOBUTTON GROUP RAD1. SELECTION-SCREEN : END OF LINE. Regards srikanth Message was edited by: Srikanth Kidambi Reply Former Member 2006 Aug 29 11:03 AM 0 Kudos 2,804 SAP Managed Tags: ABAP Development hi, From your explanation, i understood that you wan...
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-002. PARAMETERS : p_rd1 RADIOBUTTON GROUP r1 DEFAULT 'X' USER-COMMAND cmd1, p_rd2 RADIOBUTTON GROUP r1. SELECTION-SCREEN END OF BLOCK b1. SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-003. PARAMETERS : p_rd3 RADIOB...
SAP Managed Tags: ABAP Development Hello, Did you check the p_down radio-button & did an F4 on p_file ? After this in the debug mode you find that in the event AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file, the value for p_up = 'X' ? Can you try like this & check ? PA...
at selection-screen on radiobutton group grp1."'rb4'. message 'radio 4 selected' type 'I'. Regards, Dilip Reply Former Member 2006 Jan 13 7:40 AM 0 Kudos 2,387 SAP Managed Tags: SAP Inside Track, ABAP Development Dear Try this at selection-screen on radiobutton group gr...
The RadioButton UI element is a switch with two states (on/off) that enables users to select options. The RadioButton UI element allows you to spread the displayed radio buttons individually on the screen instead of grouping them in a table. You can toggle the radio button when you bind ...
SAP Managed Tags: ABAP Development Hi Leela, You cannot use the Case statement to read the radio buttons. nstead you will have to use Loop at Screen under At Selection Screen Output. Please refer to the below code or the reference: ...
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 ...
i am giving you the screen shots please check t and give me the proper code . here in this if i am selection fill form the that radiobutton screen should be invisile and form screen should be open . This is urgent .please revert me asap Know the answer? Help others by sharing your...
radiobutton_event ?= event. endif. data: dd_listbox_event type ref to cl_htmlb_event_selection. case event->id. when 'male'. radio_value = '1' . when 'female'. radio_value = '2' . endcase. Rgds, Jothi. Do Close the thread if you are satisfied with the answer. You must be...