We are using SAP Adaper 6.5
we receive JDBC Insert notifications and a serial trigger have been created to subscribe this notification document
then we map those fields against SAP BAPI fields and call the BAPI by passing these values.
Code snippet
lock session
Invoke the BAPI
REceive the return parameters from the BAPI
Check for MSG varaible
when MSG=“S”
Commit
Release lock
when MSG= “E”
Rollback
Release lock
The problem we face is , suppose the table is inserted with 10 records in on shot then we get 10 different notification document been published, here the first notification document is picked by the trigger and calls the bapi and it works as expected. But on the consecutive calls we receive from the BAPI that webMethods User have not yet released the lock for this BAPI, but here in our code we have release lock which will release connection resources. but in originality for the second call the BAPI throws that it locked by the webMethods user… so even the release lock invoke is success in first call it doesnot actually releases the resources from SAP side… Could anyone have faced this issue… Please help me to resolve this issue.