‎2007 Apr 26 4:37 AM
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
‎2007 Apr 26 5:16 AM
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.
‎2007 Apr 26 5:13 AM
hi,
correct that error records and run bdc again for this error records...
ravi
‎2007 Apr 26 5:16 AM
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.
‎2007 Apr 26 5:18 AM
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.
‎2007 Apr 26 5:34 AM
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^