Application Development 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: 

POPUP_DISPLAY_MESSAGE

Former Member
0 Kudos

hi all,

can anyone tell me what parameters should i pass to the FM

POPUP_DISPLAY_MESSAGE with an example

rg

sandeep.

1 ACCEPTED SOLUTION

suresh_datti
Active Contributor
0 Kudos

here is asample..


call function 'POPUP_DISPLAY_MESSAGE'
  exporting
    msgid = 'RP'
    msgty = 'S'
    msgno = '016'
    msgv1 = 'TEST'
    msgv2 = 'MESSAGE'.

Regards,

Suresh Datti

4 REPLIES 4

suresh_datti
Active Contributor
0 Kudos

here is asample..


call function 'POPUP_DISPLAY_MESSAGE'
  exporting
    msgid = 'RP'
    msgty = 'S'
    msgno = '016'
    msgv1 = 'TEST'
    msgv2 = 'MESSAGE'.

Regards,

Suresh Datti

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Here is a sample.




report  zrich_0001.

call function 'POPUP_DISPLAY_MESSAGE'
  exporting
    titel = 'This is a popup message'
    msgid = '00'
    msgty = 'E'
    msgno = '001'
    msgv1 = 'Message Variable 1'
    msgv2 = 'Message Variable 2'
    msgv3 = 'Message Variable 3'
    msgv4 = 'Message Variable 4'.

The title is of course display on the title bar of the dialog box, the msgid is the message class, the message type is "E" for error, "I" for information, "W" for warning, "S" for success, "A" for abend, the message number is the message number under the specific message class. You can see these via SE91. The 4 variable fields allow you to pass variables to the placeholders in the message. For example message 001 under message class 00 has 4 placeholders & & & &. Here we are filling all four.

Regards,

Rich Heilman

Former Member
0 Kudos

Hi sandeep

CALL FUNCTIION 'POPUP_DISPLAY_MESSAGE'

exporting

msgid = ' '-----> message id

msgty = ' '-----> type s=success i=information w=warning e=error

msgno = ''---> message number

msgv1 = ''-> message text1

msgv2 = ''-----> message text2

regards

kishore

vinod_gunaware2
Active Contributor
0 Kudos

u can use other function

POP_UP_CONFIRM Boite de Confirmation Ok Cancel

RV_DOCUMENT_COPY_NO_POPUP Copie commande sans popup

TMS_ALT_POPUP_MESSAGE Message Alerte paramétré par popup

SWW_WI_POPUP_FOR_COMPLETION Définition de boutons pour fonctions existantes

SWU_POPUP_WITH_3_OPTIONS Définition 3 boutons avec textes + interruption

SWO_POPUP_TO_CONFIRM Popup confirmation oui / non / interrompre

SWD_POPUP_SELECT_WORKFLOW_TASK popup définition d'un workflow Popup

SWD_POPUP_SELECT_ELEMENT popup sélection d'un évènement utilisateur

SWD_POPUP_ASK_FOR_UPDATE popup sauvegarde 3 boutons oui/non/ interrompre

LC_POPUP_TO_CONFIRM_STEP Popup avec titre 1 txt, 2 boutons

LC_POPUP_TO_CONFIRM_STEP_JNA Popup avec titre 1 txt, 3 boutons

POPUP_WITH_TABLE_DISPLAY Popup d'une table Sélectionner 1 ligne.

FI_F4_ZTERM Popup conditions paiement et sélection.

RH_ASK_FOR_SELECTION_DATE Popup sélection date

POPUP_GET_VALUES_DB_CHECKED Saisie champs + contrôler existence ds table.

COPO_POPUP_TO_DISPLAY_TEXTLIST Affichage en pop-up d'une liste

POPUP_TO_CONFIRM_LOSS_OF_DATA Question User désir transformation avec perte data

POPUP_TO_CONFIRM_STEP Question User souhaite exécuter l'étape.

POPUP_TO_CONFIRM_WITH_MESSAGE Informer User: point de décision pendant une action

POPUP_TO_CONFIRM_WITH_VALUE User souhaite faire l'étape avec objet particulier

POPUP_TO_DECIDE Fournir à User plusieurs choix par boutons radio

POPUP_TO_DECIDE_WITH_MESSAGE Créez zone informer User: point décision spécifique

POPUP_WITH_TABLE_DISPLAY Affichage table pour que User choisisse un element

TH_POPUP Affichez message système sur écran spécific User

POPUP_TO_DISPLAY_TEXT Créez zone dialogue et affiche message de 2 lignes

POPUP_TO_SELECT_MONTH Popup pour choisir un mois

regard

vinod