Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Problem using BDCMSCCOLL

Former Member
0 Kudos
78

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

2 REPLIES 2

Sandra_Rossi
Active Contributor
0 Kudos
43

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.

Former Member
0 Kudos
43

It is BDCMSGCOLL instead of BDCMSCCOLL.