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

SE37

Former Member
0 Likes
949

Hi,

When i execute a bapi from se37 i can see that it returns paramters..

but the records have not updated in the relevant screen.

what does that mean ?

from se37 while we execute the bapi, does it need to post entries ?

jeff

7 REPLIES 7
Read only

Former Member
0 Likes
871

Hi

For this purpose only,In the program after executing the BAPI

we use the extra bapi

BAPI_TRANSACTION_COMMIT to commit the changes to Database

so just in SE37 changes are not committed to DB.

Reward points for useful Answers

Regards

Anji

Read only

Former Member
0 Likes
871

Hi

when u execute bapi from se37 . the data is not commited to the database . so u dont see the updation in the screen .

U need to call BAPI_TRANSACTION_COMMIT explicity to commit to the database .

Read only

gopi_narendra
Active Contributor
0 Likes
871

BAPI if u run from SE37 will not update the tables. unless the commit transaction is done it wont update the tables

after calling the BAPI u need to call another BAPI BAPI_TRANSACTION_COMMIT to commit the values.... which is not possible in SE37, but is possible only in an ABAP program

Regards

Gopi

Read only

Former Member
0 Likes
871

HI,

You have to call the BAPI and BAPI_TRANSACTION_COMMIT in sequence..

GO TO SE37

In the menu..

Function module. -> TEST -> TEST SEQUENCES

Give the BAPI function module in the first line.

Then give the FM BAPI_TRANSACTION_COMMIT Fm in the second line..

Press enter..

Execute the BAPI Fm then control back to the second FM..press F8 to save the changes

Thanks,

Naren

Read only

Former Member
0 Likes
871

Hi,

If the BAPI is a standalone BAPI, i.e. if it can be executed directly from SE37 & doesnt require any program to call it, then it should do the posting. There shouldnt be any problem in updating the posting details.

I would suggest to Debug & check.

Best regards,

Prashant

Read only

0 Likes
871

Return 000

wat does that mean

Read only

former_member194669
Active Contributor
0 Likes
871

Which BAPI?

aRs