天天看點

SAP Cloud for Customer銷售訂單External Note的模組化細節

SAP Cloud for Customer的銷售訂單建立頁面裡,我們可以給一個訂單維護External Note,當這個訂單同步到S/4HANA生成對應的生産訂單後,這個note可以作為備注提示生産勞工。

SAP Cloud for Customer銷售訂單External Note的模組化細節

它的模組化邏輯是:

首先進入調試模式,檢視到這個字段綁定到UI模型的TextCollection/CustomerInformation上

SAP Cloud for Customer銷售訂單External Note的模組化細節

然後進入Cloud Application Studio,找到UI模型這個字段,檢視發現它又綁定到了BO的TextByTextTypeCodeAndLanguageCode.

SAP Cloud for Customer銷售訂單External Note的模組化細節

這裡不難猜測出,SAP C4C BO上支援多種類型的note,通過typecode區分。

那麼我怎麼知道External Note對應的typecode的值呢?這個好辦,在系統裡維護一條帶有External note資料的銷售訂單,比如這條:

SAP Cloud for Customer銷售訂單External Note的模組化細節

然後通過OData讀取這條銷售訂單,OData url如下:

https://jerry.sap/c4c/odata/cust/v1/zjerrysalesorder/CustomerQuoteCollection(

‘00163E7209B31EE98297C038F2A3FDDC’)/CustomerQuoteText

響應裡包含的字段TypeCode的值10024就是External Note的type code。

SAP Cloud for Customer銷售訂單External Note的模組化細節

繼續閱讀