on ‎2017 Jun 01 6:34 AM
method /IWBEP/IF_MGW_APPL_SRV_RUNTIME~CHANGESET_END.
commit work and wait.
"wait required because of no tolerance of delay in update task
endmethod.
Experts,
Can we somewhere configure or customize in SAP NW Gateway the behavior of COMMITs (transaction handling)?
We have a requirement that we MUST wait for the update task to release the locks on SAP objects. We now have implemented the CHANGESET_END method (see above), but wondered if there is a generic switch or piece of customizing that deals with this.
Request clarification before answering.
Hi Wouter,
your question is not 100% clear to me.
You wrote that you have the requirement that you "cannot wait for the update task to release the locks on SAP objects.".
But if you use "COMMIT WORK AND WAIT" it is exactly the opposite behaviour. You wait as long as it takes for the system to persist the changes on the underlying database.
The SAP Gateway framework by default performs a commit work at the end of a change set since this is the end of a LUW. We do however not perform any other COMMIT WORK when doing updates or creates. This has to be done be the service implementation.
That said if you explicitly want to wait for the update task to finish your implementation is correct.
Best Regards
Andre
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just ran into a problem related to this, and would appreciate any feedback from you Andre or any of the other gurus in your department (or indeed anyone else reading this).
I work on the backend (service implementation) for a solution where the client is developed with Hybrid Application Toolkit and has offline capability. In the service implementation I have created update function modules, and just now I tested the update conflict handling. I made two changes to the same entity offline, and when I synchronized the second update failed due to Etag mismatch. A second synchronization attempt was made and update number two was accepted, which is a pretty strong indication to me that this problem results from a race condition. The first update hasn't been commited before the second request is being processed, and therefore it fails to match the Etag - so how can I ensure that the first update has been commited. Well, there's that commit & wait statement, and there's *possibly* other solutions.
We use weak Etag with the latest changed timestamp, but that shouldn't really be of any significance here since it is a timing issue.
My question then is; would you consider it a bad solution to add a "commit work and wait" statement in the implementation of changeset_end to ensure the update function modules have completed before the next request is processed, or is this an acceptable (or even common) way to solve such race conditions?
Would it be possible to use the deferred mode in $batch?
https://help.sap.com/viewer/68bf513362174d54b58cddec28794093/7.51.0/en-US/94a126519eff236ee10000000a...
Here as a developer you would get the content of a $batch request and can work on it as you like.
Regards,
Andre
| User | Count |
|---|---|
| 12 | |
| 9 | |
| 7 | |
| 5 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.