‎2006 Sep 19 1:00 PM
hello all,
i have a requirement in a method to display message to user, but i am not supose to use message statement. is there any METHOD which i can use in this situation... to prompt message to user...
please help me out ....
thanks in advance...
seenu...
‎2006 Sep 19 1:03 PM
HI,
use following FM.
<b>POPUP_DISPLAY_MESSAGE</b>
CALL FUNCTION 'POPUP_DISPLAY_MESSAGE'
EXPORTING
* TITEL =
MSGID = 'SU'
MSGTY = 'I'
MSGNO = 000
MSGV1 = 'Hello this is message'
* MSGV2 =
* MSGV3 =
* MSGV4 = .regards,
‎2006 Sep 19 1:04 PM
You can use the "Application Log" object for this purpose.Check out the SAP example <b>SBAL_DEMO_04_POPUP</b>for your reference.
‎2006 Sep 19 1:51 PM
hi
good
try the below function module,
BAL_DSP_MSG_LONGTEXT Display message long text
BAL_MSG_DISPLAY_ABAP Output message as ABAP-MESSAGE
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_DISPLAY_TEXT Create a dialog box in which you display a two line message
TH_POPUP Display a popup system message on a specific users screen.
thanks
mrutyun^
‎2006 Sep 20 6:01 AM
Hi All,
Thanks for ur advise, but i want to use METHOD from any CLASS. please help me in this situation
Thanks for ur help,
Seenu