‎2008 Jun 05 1:16 PM
In BDC call transaction method,
if mode is Synchornous and given to process in Back ground, then if any error comes in between the data updation then will it inform or not about the data updation?
‎2008 Jun 05 2:15 PM
Hi,
In BDC call transaction method, there are three modes : A (All screens), E (only error screens) and N (No screen mode). In this method there is no mechanism to capture errors implicitly. So you need to declare a structure of type BDCMSGCOLL which will collect all the messages either success or errors which ever happens to be the case. In your case it is a background with synchronous updates ie N mode so you will not see any messages or screens untill all the processing is over. You will have to check the structure declared of type BDCMSGCOLL to know the status of the records. Hope this has given you a clear idea.
Reward points if useful.
Regards,
Sekhar Kalluru
‎2008 Jun 09 1:30 PM
hi,
Any messages that occur during CALL TRANSACTION USING ... are collected in the specified internal table. The internal table must have the structure BDCMSGCOLL.
the interanl table which is of structure BDCMSGCOLL will give the information whether the data is upadated or any errors occured.
reward if useful,
thanks and regards.
‎2008 Jun 09 8:04 PM
‎2008 Dec 24 11:41 AM