cancel
Showing results for 
Search instead for 
Did you mean: 

interactive pop-up message for list of users

Former Member
0 Kudos

Hi,

TH_POPUP gives a pop up message for a list of users with just an information(error) message.I need a functionality like give a pop up message to list of users and track user's input(OK or cancel) ,If OK i have to take to a perticulaer transction(CRMD_ORDER).

Please let me know if there are any FM or how can i code with C calls as in TH_POPUP.I dont want to use express workitem message.

Thank you very much in Advance...

Accepted Solutions (0)

Answers (6)

Answers (6)

Former Member
0 Kudos

can you use

POPUP_TO_CONFIRM_STEP

it has three button YES, NO and CANCEL.

you can track them

regards

Former Member
0 Kudos

hi,

try with this

call function 'POPUP_TO_CONFIRM'

exporting

titlebar = text-001

text_question = text-003

display_cancel_button = gc_space

importing

answer = l_answer

exceptions

text_not_found = 1

others = 2.

if l_answer = '1'

else

endif.

cheers,

sasi

Former Member
0 Kudos

Hi,

Try this Function Module

POPUP_TO_DECIDE_WITH_MESSAGE - It Create a dialog box in which you inform the user about a specific decision point via a diagnosis text.

POPUP_TO_CONFIRM_WITH_VALUE - Create a dialog box in which you make a question whether the user wishes to perform a processing step with a particular object.

POPUP_TO_DECIDE - Provide user with several choices as radio buttons

Hope it helps u.

Thanks&Regards,

Ruthra

Former Member
0 Kudos

Hi Rob

This does not give a message to specific user.

This is useful to give popup on his own session.

Former Member
0 Kudos

You can use sy-uname to create a custom message.

Rob

Former Member
0 Kudos

FM POPUP_TO_DECIDE_LIST may be what you need.

Rob

Former Member
0 Kudos

Look for function modules starting with POPUP (POPUP*) and choose the one that fits better for your requirement.

Cheers,

Sanjeev