前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >SAP CRM的订单模型移植到S4HANA后,在订单保存功能上作出的改进

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

作者头像
Jerry Wang
发布2020-03-06 13:36:39
3370
发布2020-03-06 13:36:39
举报

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:

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-03-04 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • A new term “Global Update Buffer”
  • save_single_header consists of three steps
  • Item save has exactly the same logic
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档