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: 

in bdc

Former Member
0 Kudos

hi gurus in bdc there r 100 records , while processingit , if system crashes after 15th record .

tell me what happend , how many records r uploaded , how we start the remaining

explain me in boath calltrandaction & session method.

4 REPLIES 4

Former Member
0 Kudos

Hi,

In session method after the transfer there is session log to analyse which records are uploaded successfully. Then we can process the other records again by creating other session and processing it.

In call transaction the records which are not uploaded can be seen externally by writing the code for it.

<removed by moderator>

Edited by: Mike Pokraka on Aug 4, 2008 6:55 PM

Former Member
0 Kudos

Hi,

In session Method All records will be processed except the error records.......

In call Transaction It depends upon the Mode IF it is "N" mode then all records will be processed and error records u can maintain in error file using bdcmsgcoll, like in 'A','E'.

Thanks,

Former Member
0 Kudos

In the Call transaction Method,

It will process all the records if the Update Mode is 'N', it will store all the error messages in BDCMSGCOLL structure. The errored records would be stored in that structure.

In Session Method,

It stops in the 15th error record, it wont move further.

***********

http://help.sap.com/erp2005_ehp_03/helpdata/EN/fa/09715a543b11d1898e0000e8322d00/frameset.htm

Former Member
0 Kudos

Hi,

It depends upon the db updation rocess(synch and asynchronous).

If itz synchronus process then upto 15th record (means 14th record)updates remaining in error.

If itz asynchronus process then it will updates all the records except 15th record.

So,as per ur db updation process the session or call t/r methods updates the db.

Regards

Krishna