2006 Jun 06 5:39 PM
Hi Friends,
If Sy-subrc <> o,
some error message.
But the error message should be as a pop Up window.
So to create the pop window whats the procedure.
Thanks,
Shejal.
2006 Jun 06 5:46 PM
Try FM POPUP_TO_INFORM, Example:
CALL FUNCTION 'POPUP_TO_INFORM'
EXPORTING
TITEL = 'ERROR'
TXT1 = 'Enter the message using the input lines at the bottom'.
Regards.
Hi Friends,
If Sy-subrc <> o,
some error message.
But the error message should be as a pop Up window.
So to create the pop window whats the procedure.
Thanks,
Shejal.
2006 Jun 06 5:41 PM
2006 Jun 06 5:46 PM
Try FM POPUP_TO_INFORM, Example:
CALL FUNCTION 'POPUP_TO_INFORM'
EXPORTING
TITEL = 'ERROR'
TXT1 = 'Enter the message using the input lines at the bottom'.
Regards.
2006 Jun 06 5:51 PM
2006 Jun 06 5:52 PM
Hi Sejal,
Have a look at the FMs :
POPUP_FOR_INTERACTION
POPUP_TO_CONFIRM
<b>Reward points to all the helpful answers and close the thread.</b>
2006 Jun 06 5:52 PM
Try this if possible...
Raise the message as info, and exit after that
if sy-subrc <> 0.
message 'some error message' type I.
Exit.
endif.
2006 Jun 06 6:03 PM
2009 Mar 24 8:46 AM
Hello,
I also try to create a pop-up window en use the following coding:
if vbak-kunnr = '0000000484'.
Call function 'POPUP_TO_INFORM'
EXPORTING
titel = 'pop-up'
txt2 = 'pas op'
txt1 = 'pas nog een keer op'.
exit.
endif.
This pop-up only has to appear for customer 484 and this also happens. However the pop-up stays on the screen and I cannot continue with the order. What part in my coding is wrong or wat is missing?
Thanks in advance,
Ivo