Application Development and Automation 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: 
Read only

bdc

Former Member
0 Likes
542

hi guru's,

After running a BDC program in background, next day morning when you see the results, few records are not updated(error records). What will you do

then?

thanx

loki

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
522

1. collect out the records in a audit file.

2. From the 'message' option of call transaction you will find which records are faulty and the reason behind it.


    CALL TRANSACTION 'C223' USING  i_bdcdata[]
                            MODE   p_mode
                            UPDATE p_update
                            <b>MESSAGES INTO i_message</b>.

3. Correct the records and run the bdc for that records

or you can create a error session and run the BDC.

4 REPLIES 4
Read only

Former Member
0 Likes
522

hi,

correct that error records and run bdc again for this error records...

ravi

Read only

Former Member
0 Likes
523

1. collect out the records in a audit file.

2. From the 'message' option of call transaction you will find which records are faulty and the reason behind it.


    CALL TRANSACTION 'C223' USING  i_bdcdata[]
                            MODE   p_mode
                            UPDATE p_update
                            <b>MESSAGES INTO i_message</b>.

3. Correct the records and run the bdc for that records

or you can create a error session and run the BDC.

Read only

0 Likes
522

I mean in case of error session you can execute the error session screen by screen. where you will get the error message in each screen correct them at the same time and update the transaction.

Read only

Former Member
0 Likes
522

hi

good

you haved to run the BDC again with the correct records .If error records are not required to update than no need to run the BDC,otherwise you can run the BDC again.

thanks

mrutyun^