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

session and call transaction methods

Former Member
0 Likes
361

hi

I got 10 records and i am updating those records in session and call transaction, suddenly the system crashes in the middle . Now i want to know how many records are updated in both. How is it possible.? what r the no of records.?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
341

hi,

if it is a session means u have error log sm37 transaction.

if is a call transaction means we need to create error log internal table of type bdcmsgcoll structure...

**if useful reward with points**

hi

I got 10 records and i am updating those records in session and call transaction, suddenly the system crashes in the middle . Now i want to know how many records are updated in both. How is it possible.? what r the no of records.?

2 REPLIES 2
Read only

Former Member
0 Likes
342

hi,

if it is a session means u have error log sm37 transaction.

if is a call transaction means we need to create error log internal table of type bdcmsgcoll structure...

**if useful reward with points**

Read only

Former Member
0 Likes
341

Hi Siva,

If u r using session method then u can see the records which are not updated in SM37 and when using call transaction method then in code u have to do the modification as :

data : iatb like bdcmsgcol,

Loop at itab.

Write : itab-msgty, itab-messg1.

endloop.

those having msgty as S are success and those having E are the records not updated.

Regards

naveen gupta

PS: Reward Points if Helpfull.