2010 Jan 27 7:09 AM
Dear Experts,
I'm working in solution manager,
my requirement is whenever ticket is confirmed i need pop-up-message with three radio buttons for ticket resolution feedback
very good, good and ok how to do this is there any std f/m with radio buttons in popup , if so kindly update on this.
Thanks and Regards,
thirukumaran. R
2010 Jan 27 7:12 AM
Why dont you use:
CALL FUNCTION 'POPUP_TO_CONFIRM' "Push Button
CALL FUNCTION K_KKB_POPUP_RADIO3"Radio button
Edited by: Kumar Manas Mishra on Jan 27, 2010 8:20 AM
Dear Experts,
I'm working in solution manager,
my requirement is whenever ticket is confirmed i need pop-up-message with three radio buttons for ticket resolution feedback
very good, good and ok how to do this is there any std f/m with radio buttons in popup , if so kindly update on this.
Thanks and Regards,
thirukumaran. R
2010 Jan 27 7:12 AM
Why dont you use:
CALL FUNCTION 'POPUP_TO_CONFIRM' "Push Button
CALL FUNCTION K_KKB_POPUP_RADIO3"Radio button
Edited by: Kumar Manas Mishra on Jan 27, 2010 8:20 AM
2010 Jan 27 7:51 AM
i'm, looking for f.m K_KKB_POPUP_RADIO3 but this is not available in solution manager any alternatives to do this,
Regards,
Thiru.
2010 Jan 27 7:58 AM
Hi rajendran,
I Could not find any alternatives as similar to K_KKB_POPUP_RADIO3
You can go ahead with POP_UP FM or else design a screen with 3 radio buttons and add code as per requirement.
Let me know if you need any help.
Manas M.
Edited by: Kumar Manas Mishra on Jan 27, 2010 8:58 AM
2010 Jan 27 8:11 AM
Hi,
Simple Solution ..
It's available in R/3 so check out the code and try to copy and customize it according to your requirement in Solman.
Even u can add more radio buttons.
Try it.
Regards
Arbind
2010 Jan 27 7:19 AM
2010 Jan 27 7:21 AM
Hi,
Use FM 'POPUP_TO_CONFIRM'
DATA: LV_TEXTLINE1 TYPE STRING,
LV_TEXTLINE2 TYPE STRING,
LV_TITLE TYPE STRING,
LV_TEXTQUESTION TYPE STRING.
LV_TEXTLINE1 = p_line1.
LV_TEXTLINE2 = p_line2.
LV_TITLE = p_title.
CONCATENATE LV_TEXTLINE1 LV_TEXTLINE2 INTO
LV_TEXTQUESTION SEPARATED BY SPACE.
CALL FUNCTION 'POPUP_TO_CONFIRM'
EXPORTING
TITLEBAR = LV_TITLE
TEXT_QUESTION = LV_TEXTQUESTION
DEFAULT_BUTTON = p_defect
DISPLAY_CANCEL_BUTTON = 'X'
IMPORTING
ANSWER = g_ans
EXCEPTIONS
TEXT_NOT_FOUND = 1
OTHERS = 2.
IF SY-SUBRC = 0.
IF g_ans = 1.
g_ans = 'J'.
ELSEIF g_ans = 2.
g_ans = 'N'.
endif.
endif.
Thanks and Regards,
Syfulla
2010 Jan 27 7:21 AM
2010 Jan 27 7:21 AM
2010 Jan 27 7:35 AM
Hi,
You can try using function module
POPUP_TO_CONFIRM_DATA_LOSS
Hope it helps
Regards
Mansi
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |