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: 

bdc error

Former Member
0 Kudos

Hi all,

if a document is posted due to some bdc error...where will the bdc error records will be stored .... call transaction and batch input method.. in both the cases where will the error records get stored..

Regards

jothi

3 REPLIES 3

Former Member
0 Kudos

well, if the record is Posted, you won't get an error record even if the data is incorrect, because it was Posted.

By definition, that means the record was processed successfully.

If you're asking if the BDC record fails to Post, where does the error record reside? if you coded your BDC session properly, you will see the errored records in tcode SM35.

Former Member
0 Kudos

hi check the table APQI for the bdc records..

regards,

venkat

0 Kudos

In CALL TRANSACTION, errors are stored in the "itab" when using the "MESSAGES INTO itab" option.

CALL TRANSACTION tcode USING bdcdata MESSAGES INTO itab.

itab must be a structure from BDCMSGCOLL.

The field MSGTYP store the type of error: W = warning, I = Information, E = error, S = succesful.

In the other case, you have to see the "log" on sm35 to look for errors.

Greetings