SAP CRM的订单模型移植到S4HANA后,在订单保存功能上作出的改进

Posted sap-jerry

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的原创文章,请关注公众号"汪子熙":
技术图片

以上是关于SAP CRM的订单模型移植到S4HANA后,在订单保存功能上作出的改进的主要内容,如果未能解决你的问题,请参考以下文章

SAP S4CRM 1811 服务订单API介绍

使用SAP CRM中间件XIF(External Interface)一步步创建服务订单

如何阻止SAP CRM订单创建好之后,自动被置为传输状态这一行为

WooCommerce API:在订单项上创建包含元数据的订单

SAP 订单模型的编排方式概述

SAP CRM 复用视图