zoukankan      html  css  js  c++  java
  • SAP CRM的订单模型移植到S4HANA后,在订单保存功能上作出的改进

    Once an order is saved, our new event callback CRM_SRVO_H_SAVE_EC will be called:

    Main logic is in this tool class, method save_header:

    In save_header, header and item save is done separately within a LOOP:

    A new term "Global Update Buffer"

    (1) I introduce a terminology “Global Update Buffer", which consists of three internal table where the corresponding insertion, update and deletion operation for CURRENT ORDER is included.

    (2) The "Global update buffer" will be passed into a new update function module for Order Header.
    Example, suppose I have made changes on Order description:

    the GUB looks like below:

    save_single_header consists of three steps

    Step1 - Each convert class is responsible to merge its own part of change into GUB.

    How can each convert class know whether there is any change in current transaction for its responsible component?
    I use the function module CRM_ORDER_UPDATE_TABLES_DETERM to detect the change.

    Step2 for those component which does not have any change in current transaction, its object buffer must also be merged into GUB.

    Consider this scenario, you changes header shipping data ( set SHIPPING ) but no change in ORDERADM_H. If you don't merge the object buffer of ORDERADM_H to GUB, the corresponding field for ORDERADM_H will be initial. So when finally update function module is called, the initial fields of ORDERADM_H will be stored into new header table.
    This is done in this method:

    I add a new method GET_OB in convert class' interface. The supported component are looped, to merge its object buffer to GUB.

    Step3 - call new update function module with merged GUB

    Item save has exactly the same logic

    Since it is possible that one order can have different item with different item object type,


    Here below is an example, I have made changes on item shipping data:

    And this is how GUB for item looks like:


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

  • 相关阅读:
    VS2019调试 asp.net core 2.2 出现《ANCM In-Process Handler Load Failure 发布后启动错误处理》处理
    网页上显示数学公式的三种方案
    FileStream实现多线程断点续传(已封装)
    绝对定位不脱离文档流的方法
    百度地图InfoWindow弹窗圆角
    并发:线程池异步执行与创建单独的线程执行
    互斥锁和自旋锁的区别
    事务的特性和隔离级别
    线程不安全与线程安全示例
    多线程过去与现在
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/12425090.html
Copyright © 2011-2022 走看看