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 call transaction

Former Member
0 Kudos

Hi

I need to see all error messages in BDC call transaction

I tried in t100 database table

if i have 25000 records how can i come to know i have error in particular record

Regards

Rasheed

1 REPLY 1

asik_shameem
Active Contributor
0 Kudos

Hi Rasheed,

DATA: MSG_TAB TYPE TABLE OF BDCMSGCOLL.

CALL TRANSACTION 'MM01' USING BDCDATA MODE 'N' UPDATE 'A' MESSAGES INTO MSG_TAB.

Here in call transaction method, all the error messages will be stored in MSG_TAB. loop the MSG_TAB, get MSGID and MSGNR and see the errors.