‎2006 Nov 21 10:34 AM
Hi all ,
when i am runnig a bdc for 1 lakh records .if i get 50000 errors and 50000 were updated . Then how do i find the errors and update again the bdc
Thanks and Regards.
kiran.
‎2006 Nov 21 10:44 AM
hi,
better use
CALL TRANSACTION 'FB05' USING bdcdata MODE mod MESSAGES INTO itab.
IF sy-subrc <> 0.
-> analyse errors in itabA.
‎2006 Nov 21 10:40 AM
Hi
If you transfer data through session then you check the logs after the session is completed.
Regards
Haritha.
‎2006 Nov 21 10:42 AM
i would like to know how we check all 50000 error records and update
if we check it it becomes hard process for large amount of data.
‎2006 Nov 21 10:44 AM
hi,
better use
CALL TRANSACTION 'FB05' USING bdcdata MODE mod MESSAGES INTO itab.
IF sy-subrc <> 0.
-> analyse errors in itabA.
‎2006 Nov 21 10:45 AM
HI Kiran,
If you are running a Session method, then the log will be genereted for the Error records, if you are using CALL TRANSACTION method, then we can get the error record based on SY-SUBRC, if SY-SUBRC is not equal 0, then you can move it another internal table and give a report with that internal table
Regards
Sudheer
‎2006 Nov 21 10:47 AM
Hi
You can code that in the program like this, you can get all error records in to an internal table by giving condition, then you can view the internal table.
Regards
Haritha.