cancel
Showing results for 
Search instead for 
Did you mean: 

Information pop-up to specific user and track user decision

Former Member
0 Kudos

Hi ,

My requiremetn is give a POP-UP message to specific user and based on his decision take him to specific transaction.Any solution other than workflow express workitem.

Cheers

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi,

Check this link,

<u>http://www.sap-img.com/fu013.htm</u>

Hope it helps u.

Kindly reward points if u find it useful.

Thanks&Regards,

Ruthra

Former Member
0 Kudos

Hi,

Try this Function,

<b>TH_POPUP</b> - Display a popup system message on a specific

users screen.

Hope it helps u.

Thanks&Regrads,

Ruthra

Former Member
0 Kudos

Hi Ruthra,

TH_POPUP,This FM just display message.I need an additional functionality to track his action.

something like

TH_POPUP + POPUP_TO_CONFIRM_STEP..

as TH_POPUP has no export params of user decision

0 Kudos

Hi, u can use the function module

data: answer TYPE c.

CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'

EXPORTING

defaultoption = 'N'

textline1 = "Your question"

textline2 = "continue the question"

titel = ' '

start_column = 35

start_row = 6

IMPORTING

answer = answer.

IF answer EQ 'J' OR answer EQ 'Y'.

call transaction 'any tran'.

ELSEIF answer EQ 'N'.

call transaction 'another tran'.

ELSEIF answer EQ 'A'.

EXIT.

ENDIF.

sadat

Vinod_Chandran
Active Contributor
0 Kudos

Hi,

I think you can do this using a report or module pool but depends upon when you want the popup to come. Can you explain your requirement more.

Cheers

Vinod

Former Member
0 Kudos

hi vinod,

Assume we are the two users logged in ,

When I send you message with some info(New order created.Do u want to check?).when you click ok it should take you to Transaction(Order).

Also I DON'T want to use express work item as it can only be displayed when user do some action on current working screen.

Message was edited by: Ranganatha Prasad Kurupati

Vinod_Chandran
Active Contributor
0 Kudos

Hi,

As far as I know this can be done using workflow only.

Another option is to have a link to the document created in the SAP mail so that the user can click on it and see.

Cheers

Vinod