2010 May 26 3:02 AM
Hi,
I am able to upload the success records into the database. But, the BDCMSCCOLL is not returning anything for success records.
In case of warnings/ errors, it does return.
Can anyone please let me know if you have any idea about this issue?
Regards
Mounika
2010 May 26 4:03 AM
Only messages sent with MESSAGE are collected in BDCMSGCOLL, except if:
- MESSAGE is used with one of these additions (the message is handled internally by the program):
--- MESSAGE ... INTO ...
--- MESSAGE ... RAISING ...
--- Those sent inside a function module (and in its called procedures) called with EXCEPTIONS error_message = <any> are also not collected.
- or if the message makes the program abort or dump. Situations are explained here: [SAP Library - Screen programming - Message Processing|http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbaae335c111d1829f0000e829fbfe/frameset.htm]
When messages are displayed in an ALV or any other screen element that is not a standard message output means (i.e. either the message specific modal dialog box or the status bar of the screen), they won't be able to be collected as they are handled internally by the program.
2010 May 26 9:00 AM