2015 Nov 20 7:12 AM
Hi All ,
I need pop up with 4 radio button option .
We have FM for 2 , 3 ..etc like - K_KKB*RADIO2 or 3 ...
But not for 4 ?
Regards,
Ravi
2015 Nov 24 7:02 AM
Hi All ,
Thanks for your reply but I am looking standard FM .
Now I got it for 4 radio button its - wcf*popup*radio
In this we have 6 radio button option in which we have choose any no like 4 o3 etc .
Regards,
Ravi
2015 Nov 23 1:59 PM
Hi,
Try the attached code. By this means you can add multiple radio buttons as per your requirement.
2015 Nov 23 2:08 PM
Hello Ravi
You can copy FM K_KKB_POUP_RADIO3 and in your Z function module you add a new radio button
Regards,
Hamza
2015 Nov 24 7:02 AM
Hi All ,
Thanks for your reply but I am looking standard FM .
Now I got it for 4 radio button its - wcf*popup*radio
In this we have 6 radio button option in which we have choose any no like 4 o3 etc .
Regards,
Ravi
2020 Jul 15 8:11 PM
2023 Oct 27 3:49 PM
Hello!
Function '/SSC/POPUP_RADIO_8', use this function and you will have up to 8 possible inputs as a radiobutton. The quantity you fill in will be the quantity considered in the popup.
CALL FUNCTION '/SSC/POPUP_RADIO_8'
EXPORTING
textline1 = 'First option '
textline2 = 'Second option '
textline3 = 'Third option '
textline4 = 'Fourth option '
* textline5 = '5'
* textline6 = '6'
* textline7 = '7'
* textline8 = '8'
titel = 'Make your choice'
infotext = 'Choose one of the options below!'
left = 55 " left column
top = 3 " top line
* NO_BACK = NO_BACK
imp_numcol = 30 " popup window width
* XDEFAULT = XDEFAULT
IMPORTING
answer = lv_answer.
*** ANSWER will return the chosen value or 'A' as abort.