‎2009 Aug 11 6:03 PM
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?
‎2009 Aug 11 6:07 PM
‎2009 Aug 13 10:00 PM
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é
‎2009 Aug 13 10:02 PM