Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

popup for interaction

Former Member
0 Likes
2,296

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,650

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

9 REPLIES 9
Read only

Former Member
0 Likes
1,651

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

Read only

0 Likes
1,650

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.

Read only

0 Likes
1,650

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

Read only

0 Likes
1,650

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

Read only

Former Member
0 Likes
1,650

Hi,

Try below FM...

K_KKB_POPUP_RADIO3

Regards

Arbind

Read only

Former Member
0 Likes
1,650

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

Read only

sridhar_meesala
Active Contributor
0 Likes
1,650

Hi,

Have a look at this.

[Popup with radio buttons|]

Thanks,

Sri.

Read only

sridhar_meesala
Active Contributor
0 Likes
1,650

Hi,

Have a look at this.

[Popup with radio buttons|]

Thanks,

Sri.

Read only

Former Member
0 Likes
1,650

Hi,

You can try using function module

POPUP_TO_CONFIRM_DATA_LOSS

Hope it helps

Regards

Mansi