‎2006 Dec 14 8:01 AM
Hi,
I need to pop up a message..just as an Information/Warning only..
This popup msg box should have only OK button and not help and Cancel buttons.
I tried using POPUP_DISPLAY_MESSAGE..This has both OK,CANCEL and help buttons. How to avaoi this ?
I sthere any other functions which i can use.
Pls help
Thanks
Ram
‎2006 Dec 14 8:05 AM
‎2006 Dec 14 8:05 AM
‎2006 Dec 14 8:11 AM
hi Prabha,
try the FM ->
POPUP_TO_INFORM
or POPUP_FOR_INFORMATION
CALL FUNCTION 'POPUP_TO_INFORM'
EXPORTING
TITEL = 'ERROR'
TXT1 = 'Enter the message using the input lines at the bottom'.
Santosh
‎2006 Dec 14 8:15 AM
FUNCTION POPUP_TO_INFORM.
*"----
*"Lokale Schnittstelle:
*" IMPORTING
*" TITEL
*" TXT1
*" TXT2
*" TXT3 DEFAULT SPACE
*" TXT4 DEFAULT SPACE
*"----
RSTABL-TITLE = TITEL.
RSTABL-TXT1 = TXT1.
RSTABL-TXT2 = TXT2.
RSTABL-TXT3 = TXT3.
RSTABL-TXT4 = TXT4.
CALL SCREEN 201 STARTING AT 1 3
ENDING AT 80 8.
ENDFUNCTION.