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

Problem with BAPI_TRANSACTION_COMMIT function module

Former Member
0 Likes
403

I am updating the two fields of a custom table through a custom BAPI function module.

After this I am using "BAPI_TRANSACTION_COMMIT" function module to commit the LUW.

but after calling this FM one field is updated in the table and another field is disappearing from the table.

Could anybody help me in this please?

3 REPLIES 3
Read only

Former Member
0 Likes
368

Hi

Which BAPI are you using?

Max

Read only

Former Member
0 Likes
368

Hi RAJENDRA

You can also update the table directly:

UPDATE Table SET field1=Value1, field2=Value2, ... fieldN=ValueN

WHERE Condition;

commit work.

Hope this information is help to you.

Regards,

José

Read only

Former Member
0 Likes
368

What is the update statement you have in your custom BAPI?