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: 

what happens when error record

Former Member
0 Kudos

Hi ABAP Gurus,

Iam phaneendra can anybody explain in detail

what happens when there is an error record exist while updating a session in session method and in call transaction.

ie, out of 10 records 7th one is error let it be then what happens to 6 redords that 7th record and 8th 9th 10th records.

and also what is assychronous and synchronous

process .thatly in updation.

-


good answers( helpful answers must be rewarded)

regards,

phaneendra.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

search the forum its already been discussed many times .

6 records will be updated you have to reprocess your error records

sync-async.

3 REPLIES 3

Former Member
0 Kudos

search the forum its already been discussed many times .

6 records will be updated you have to reprocess your error records

sync-async.

Former Member
0 Kudos

In session message , an error session is created and you can reprocess the error records using the transaction Sm35 and the screen pop up as you make a normal entry in SAP you can change the data if you want whereas in call transaction error log can be found in BDCMSGCOLL you have change the the values in the input file and reprocess it for successful posting.

Thanks,

Karthik

Former Member
0 Kudos

Hi,

In Session Method all the 9 records will be updated except the &7th record(error record). u can get the error information in SM35.

In call tranasction method it depends upon the mode(A,N,E). In all screen mode system will stop at 7th record and all the previous 6 records will processed. In No screen mode all the 9 records will be updated except the 7th record(error record). and track the error u have to use BDCMSGCOLL in ur program(for call transaction).

Asyn-- System does not wait for Acknowledgement. but in Syn--- System waits for acknow. For this reson Asyn process is fast as compare to Sync.

Thnaks,