‎2008 Dec 10 12:35 PM
Hello!
When I use CALL TRANSACTION on mode = 'N' with the transaction F871, the table of messages no returns all the errors.
If a warning error occurs the transaction is aborted and we can't post the document. Do you know how we can do it?
We want post the document although there are warning messages.
Thanks a lot!
‎2008 Dec 10 12:37 PM
hi use the function module FORMAT_MESSAGES for catching the messages
use this in addition to the call transaction MESSAGES INTO itab
internal table itab of the type BDCMSGCOLL
‎2008 Dec 10 12:37 PM
Check this site will help
http://help.sap.com/saphelp_46c/helpdata/en/34/8e73a86df74873e10000009b38f9b8/content.htm
‎2008 Dec 10 12:54 PM
Try running the CALL TRANSACTION in mode = 'E'.
Usually Warning and Status messages do not cause any issue during posting.
There could be an error. mode = 'E' would help u atleast see whats the reason of the messages.