‎2007 Jan 29 5:58 AM
Hi all,
When I use the call transaction method in my program using mode 'A', it works well, but it returns error if I run it with mode 'N'.
The return message is of message class 'S' meaning status message. How can I bypass such type of message if I run it with mode 'N' ?
Thanks a lot.
‎2007 Jan 29 6:08 AM
S is for success message.
did u received any erorr message?if so then wht is tht?
‎2007 Jan 29 6:12 AM
Hi,
Do not check for sy-subrc after the Call transaction.
Instead check if the BDCMSGCOLL table is empty or has entries after the call transaction.
If it contains rows, then use MESSAGE_BUILD to write the errors.
Regards
Subramanian
‎2007 Jan 29 8:34 AM
The batch input is to call transaction using 'VA42' to change a sales order.
But when it overcomes 'S' type message, it just stops the batch input and returns error in mode 'N'. How can I bypass these types of messages and let the batch input run successfully in mode 'N' ?
Thanks.