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

Regarding Bapi Function Module

Former Member
0 Likes
572

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.

2 REPLIES 2
Read only

Former Member
0 Likes
403

waiting for reply........

Read only

0 Likes
403

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)