zoukankan      html  css  js  c++  java
  • SAP Fiori里的两种锁机制

    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.

    要获取更多Jerry的原创文章,请关注公众号"汪子熙":

  • 相关阅读:
    摊牌了……开始入坑硬件开发……Arduion点亮oled小屏
    最后的晚餐——dubbo其他剩余高级知识点分享
    dubbo的负载均衡以及配置方式补充
    dubbo知识点之管理工具dubbo-admin分享
    could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable',
    netcore 后台任务 指定每天某一时间执行任务
    C# 线程Timer的Change
    EF 取值时出错: Specified cast is not valid
    C# 比较两个数据的不同
    c# json数据解析——将字符串json格式数据转换成对象或实体类
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/12869008.html
Copyright © 2011-2022 走看看