‎2007 Mar 22 10:11 AM
I m using a bapi to change a value in the database for CL02.
Standard tables KLAT & KLAH is updated.
all the changed values r displayed in CL02 except description.
I m using BAPI_CLASS_CHANGE.
i have passed values to this tables in FM.
CLASSDESCRIPTIONS
CLASSLONGTEXTS
CLASSDESCRIPTIONSNEW
CLASSLONGTEXTSNEW
Why the description is not displayed ??
But its updated in the table successfully.
Thnaks in advance.
‎2007 Mar 22 11:03 AM
‎2007 Mar 22 12:16 PM
Hi,
you need to commit the transaction. ie after your bapi call use below code,
*Commit the Transaction
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
EXPORTING
wait = 'X'.
IMPORTING
RETURN = .
Regards,
Chandra
(Reward Points if helpful)