SAP CRM One Order header資料庫表幾個和時間戳相關的欄位

i042416發表於2020-08-23

這些欄位為:CHANGED_AT, HEAD_CHANGED_AT和CRM_CHANGED_AT

Have a look at Order header table CRMD_ORDERADM_H and you can find there are three different times. When, where and how is each populated?


SAP CRM One Order header資料庫表幾個和時間戳相關的欄位


CHANGED_AT

There is a scenario that the field CHANGED_AT is changed, but HEAD_CHANGED_AT remains untouched. The common scenario is that you make some changes on order line item only, for example change the description of line item. When the change is to be persisted, a new timestamp is populated and filled to both CHANGED_AT and CRM_CHANGED_AT field.

The usage of CRM_CHANGED_AT is clearly explained in the source code.


SAP CRM One Order header資料庫表幾個和時間戳相關的欄位


Kindly notice the difference between changed_at from database buffer and latest value.

In line 163, the field value filled based on database buffer is overwritten with the latest data:


SAP CRM One Order header資料庫表幾個和時間戳相關的欄位 SAP CRM One Order header資料庫表幾個和時間戳相關的欄位


The purpose is, after this assignment, in line 166 we can use simple “=” to compare whether there are some other changes on ORDERADM_H besides these three fields ( since in line 163~165 we forcefully ensure the equality of them ).

Since we actually only make changes on item, so line 239 will not be executed – head_changed_at remains unchanged.


SAP CRM One Order header資料庫表幾個和時間戳相關的欄位


Now in line 335 the header object buffer is now changed with latest value of changed_at:


SAP CRM One Order header資料庫表幾個和時間戳相關的欄位


So in function module CRM_ORDER_UPDATE_TABLES_DETERM, an entry will be determined for update, which is simply because the changed_at value now in object buffer and database buffer are different. See comparison screenshot in debugger:


SAP CRM One Order header資料庫表幾個和時間戳相關的欄位


After the update function module is executed, the CHANGED_AT and CRM_CHANGED_AT is now persisted to header table successfully.


SAP CRM One Order header資料庫表幾個和時間戳相關的欄位


HEAD_CHANGED_AT

The scenario with this field involved is quite straight-forward, for example just make changes on header description. In this case HEAD_CHANGED_AT will be overwritten with CHANGED_AT, since now header object buffer and database buffer has different value for field DESCRIPTION:


SAP CRM One Order header資料庫表幾個和時間戳相關的欄位 SAP CRM One Order header資料庫表幾個和時間戳相關的欄位


要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":

SAP CRM One Order header資料庫表幾個和時間戳相關的欄位


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2713956/,如需轉載,請註明出處,否則將追究法律責任。

相關文章