cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Hi all,

what is the functional module to dispay pop up message when user log in to the system?

thanks alot

Siska

0 Likes
View Entire Topic
Former Member
0 Likes

Hi,

Following are the function modules for generating pop ups :

WS_MSG - Create a dialog box in which you display an one-line message.

POPUP_TO_CONFIRM_STEP - Create a dialog box in which you make a question whether the user wishes to perform the step.

POPUP_TO_CONFIRM_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point during an action.

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

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

POPUP_TO_DISPLAY_TEXT - Create a dialog box in which you display a two-line message.

POPUP_TO_SELECT_MONTH - Popup to choose a month

POPUP_WITH_TABLE_DISPLAY - Provide a display of a table for user to select one, with the value of the table line returned when selected.

POPUP_TO_CONFIRM - Pop-up dialog confirm an action before it is carried out.

POPUP_TO_DISPLAY_TEXT - Displays a text in a modal screen

POPUP_TO_INFORM - Displays several lines of text. No OK or Cancel buttons.

POPUP_TO_CONFIRM/POPUP_TO_DISPLAY_TEXT.

TH_POPUP - Display a popup system message on a specific users screen.

POPUP_TO_CONFIRM_LOSS_OF_DATA - Create a dialog box in which you make a question whether the user wishes to perform a processing step with loss of data.

POPUP_TO_CONFIRM_STEP - Create a dialog box in which you make a question whether the user wishes to perform the step.

POPUP_TO_CONFIRM_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point during an action.

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

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

POPUP_TO_DISPLAY_TEXT - Create a dialog box in which you display a two-line message.

POPUP_WITH_TABLE_DISPLAY - Provide a display of a table for user to select one, with the value of the table line returned when selected.

POPUP_TO_CONFIRM_LOSS_OF_DATA - Create a dialog box in which you make a question whether the user wishes to perform a processing step with loss of data.

POPUP_TO_CONFIRM_STEP - Create a dialog box in which you make a question whether the user wishes to perform the step.

POPUP_TO_CONFIRM_WITH_MESSAGE - Create a dialog box in which you inform the user about a specific decision point during an action.

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

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

POPUP_TO_DISPLAY_TEXT - Create a dialog box in which you display a two-line message.

POPUP_WITH_TABLE_DISPLAY - Provide a display of a table for user to select one, with the value of the table line returned when selected.

Thanks & Regards

Abhishek

Former Member
0 Likes

Hello Abhishek,

i have the following requirement,

can you tell me by using which fm i can solve this issue.

it is more helpful if you could provide me with some examples

When the transaction code VL01N is executed only for an outbound delivery (ZCD).

A new pop-up window will be displayed, containing the details like storage location, quantity and unit of measurement for the stock of a particular. This pop-up will be displayed before the overview screen of the delivery is displayed.

For e.g.

Storage Location Quantity Uom

DE04 100 TO

FR04 200 TO

Choose Quantity Not Yet Available(This should disable except **99)

2) Accordingly user will be able to choose the stock from the desired storage location.

Storage Location Quantity Uom

DE04 100 TO

FR04 200 TO

Choose Quantity Not Yet Available(This should disable except **99)

Storage Location Quantity Uom

DE99 100 TO

FR99 200 TO

Choose Quantity Not Yet Available(This should enable obly for **99)

Here this quantity not available filed should be enable

After choosing the desired storage location and the quantity, the same will get automatically populate in their respective fields.

3) Incase, if the stock is not available in the virtual storage location, then the button u2018Quantity not yet availableu2019 will get activate.

When the end user selects this button, the system will go in the standard way and update the open quantity behind the call off item (remaining delivery quantity) in the delivery quantity field.

I have a badi where the required code gets populated and i have a function module

popup_with_table_display to popup window.

Thank you