‎2009 Mar 10 9:36 AM
Hi All,
I have a requirement regarding tcode VA01. While creating a sales order if u enter blocked credit customer it will display a message like "Order receipt/delivery no possible, credit customer blocked" . Instead of this message i need to call a screen. In Which user exit i need to write code.
Your inputs would be greatful.
Thanks,
Sreekala.
‎2009 Mar 10 9:51 AM
‎2009 Mar 10 9:51 AM
‎2009 Mar 10 10:05 AM
Hi Amit,
Instead of that error message i have to display one screen. How can we kill the standard message for Tcode Va01. After that i have to display one screen.
Very Thanks,
Sreekala.
‎2009 Mar 10 10:14 AM
Hi,
Instead of Killing or deleting what ever it may be.
Change the Error message to Information/warning
Hope this helps.
Regards,
Amit Teja
‎2009 Mar 10 10:25 AM
Hi Amit,
How can we able to change the message with coding.
Thanks,
Sreekala.
‎2009 Mar 10 10:37 AM
Hi Sreekala,
Try using this hope this works
DATA: IT_MSG TYPE STANDARD TABLE OF BAPIRET2 INITIAL SIZE 0.
it_msg = msg_tab.
*check for whihc message you want to change from Error to Info.
Loop at msg_tab where messag number =....
........
..........
Modify ...... transporting type
endloop.
msg_tab = it_msg.
Regards,
Amit Teja
‎2009 Mar 11 1:46 PM
Hi Sreekala,
You may try using user check, this should be activated from config. Check tcode OVA8. The place to put your check will be in LVKMPZ* depending on which one is active on the config setup.
Hope this helps.
Regards,
nEnE
‎2009 Mar 11 10:23 PM
Hi - I don't think, you will be able to change the standard code and message type. (Yes can modify the code with access key, which is highly not recommended )
Kuntal