‎2008 Sep 18 8:27 PM
hi to all ,
i uploaded data into database by using bapi function modules.is i should end with bapi_transaction_commit.after doing this also my data base is not updated
‎2008 Sep 18 8:31 PM
Hi ... try to putted WAIT into the bapi_transaction_commit MF.
Thanks and Regards.
David Carballido
‎2008 Sep 18 8:36 PM
Welcome To SCN.
Put a break point at your BAPI & check the BAPI Table parameter have updated with your required data or not?
‎2008 Sep 18 10:08 PM
could you provide more details about problem
which BAPI you are using..for what business purpose you are using BAPI.
Regards,
Amit R.
‎2008 Sep 19 4:51 AM
Hello Ankal,
Yes you will have to use BAPI_TRANSACTION_COMMIT for updating data to database.
Give the WAIT parameter in BAPI_TRANSACTION_COMMIT as 'X'.
Regards
Farzan
‎2008 Sep 19 4:55 AM
Hi ,
can u tell me which BAPI u r using .. and while passing records to BAPI have u done error handling before that ..
‎2008 Sep 19 5:41 AM
hi,
can u exlpain in detail for what trancation you used bapi.. you mightr have missed some fields that are used for updation or might have been you are using a wrong bapi.
regrads
janani
‎2008 Sep 19 6:20 AM
Hi,
Call the BAPI transaction commit function module like below.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
EXPORTING
wait = 'X'.
Before calling this function module check the bapi return type if it is 'S' only call the BAPI transaction commit function module
Thanks,
Naveen kumar.
‎2008 Sep 19 6:27 AM
Hi,
For all the bapi's we need to execute 'bapi_transaction_commit' . By default bapi's are not auto commited, we need to explicitly call the bapi_transaction_commit'. If you are passing huge amount of data you need to pass some value to wait parameter else 'X'.
Regards,
Naresh.