Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
JerryWang
Advisor
Advisor

Approach 1: ETAG mechanism


This approach is used in SAP CRM Fiori.

Suppose user Jerry has opened a given opportunity with ID = 3456 and clicked the Edit button:


A read operation is fired and sent to ABAP backend:



We can observe in Chrome development tool that the ETAG field of HTTP response header is filled accordingly.


This ETAG value ending up with "26AE" is actually calculated by application.

The common calculation logic is to either leverage the last changed timestamp of OData model node being read, see example below:


or use the calculated HASH value based on the whole content of model node:


Now say another user has changed this opportunity and saved the change successfully. Jerry was not aware of it at all, he just changed the opportunity, and pressed the Save button.


And Jerry saw this error message: Data has been changed by another user. Choose OK to retrieve the latest data.


Open Chrome Development Tool again, and we can find that once Jerry has pressed the Save button, a batch request is sent to ABAP backend whose request header contains one field If-Match. This field is filled with the very ETAG value got from the response header field ETAG of the first read request ( which ends up with 26AE ).


What has happened under the hood? A comparison between latest ETAG and the ETAG passed by Fiori UI is made in method CHECK_BEFORE_MODIFICATION:


CHECK_BEFORE_MODIFICATION will delegate to method CHECK_ETAG_MATCH in line 57. If check fails, the save will not be performed at all.


Approach 2: lock mechanism based on BOPF


This logic is used in S/4HANA Fiori application, such as Material application, which consumes OData service implemented on top of CDS view plus BOPF.


Open one Material and press Edit button:


Now locks related to a series of Material tables could be found in tcode SM12:



In S/4HANA backend system, launch tcode BOBX to open BO model with name I_PRODUCTWD. Navigate to Edit action and double click, to find implementation class CL_I_DR_PRODUCTWD.


It's responsible for method LOCK_ACTIVE_DOCUMENT to react on the Edit button click in Fiori UI.


Set a breakpoint on it, click Edit button and breakpoint is triggered. From the callstack we can clearly know how the execution flow is delegated from BOPF framework code to Material application code. The acutal enqueue operation is achieved by the enqueue function module owned by Material application.


2 Comments