‎2008 Dec 05 7:24 AM
hi all!
I am using this Standared FM (ME_CONFIRMATION_CHECK_QUANTITY).
In this FM i want to convert error message to information messgae ( type 'E' to type 'I') without modify standared FM.
Is it possible to avoid come out of the program in error message?
thanks all
‎2008 Dec 05 7:44 AM
Hi,
You can display Information message like this.
MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno.
Hope it helps.
Regards
Rohit
‎2008 Dec 05 7:46 AM
After you get the message, you can use a loop.
field-symbol <fs>
loop at lt_msg asssigning <fs> where msgtype = 'E'..
<fs>-msgtype = 'I'.
endloop.
......
‎2008 Dec 05 8:12 AM
Hi,
Can u tell me wats the message id and package/component?
Also if u no the actual message id and component u can go to SPRO transaction and change message control for message id in that area.
Please appreciate help.
Regards,
Ameet
Edited by: Ameet Jassani on Dec 5, 2008 1:44 PM
‎2008 Dec 05 8:17 AM
Hi Dharam,
Both Message id and Package will be ME in this case.
Best Regards,
Deepa Kulkarni
‎2008 Dec 05 8:37 AM
Hi Dharma,
Use the following syntax for the same:
MESSAGE e001 display like 'I'.
This will display your error message as a information message.
Hope this will help.
Regards,
Nitin.
‎2008 Dec 05 9:50 AM