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

about bdc

Former Member
0 Likes
605

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.

1 ACCEPTED SOLUTION
Read only

andreas_mann3
Active Contributor
0 Likes
582

hi,

better use

CALL TRANSACTION 'FB05' USING bdcdata MODE mod MESSAGES INTO itab.
    IF sy-subrc <> 0.
      -> analyse errors in itab

A.

5 REPLIES 5
Read only

Former Member
0 Likes
582

Hi

If you transfer data through session then you check the logs after the session is completed.

Regards

Haritha.

Read only

0 Likes
582

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.

Read only

andreas_mann3
Active Contributor
0 Likes
583

hi,

better use

CALL TRANSACTION 'FB05' USING bdcdata MODE mod MESSAGES INTO itab.
    IF sy-subrc <> 0.
      -> analyse errors in itab

A.

Read only

Former Member
0 Likes
582

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

Read only

Former Member
0 Likes
582

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.