将SAP C4C Custom BO使用ABSL编写的逻辑通过OData服务暴露出去

时间:2022-07-24
本文章向大家介绍将SAP C4C Custom BO使用ABSL编写的逻辑通过OData服务暴露出去,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

Suppose you have implemented some logic in a given action of your custom BO via ABSL, it is possible to expose the logic via Custom OData service so that it could be consumed by external applications. Custom BO:

import AP.Common.GDT as apCommonGDT;
import AP.FO.BusinessPartner.Global;

businessobject TestBO {
  [Label("Agreement ID")] [AlternativeKey] element AgreementID:ID;
  [Label("Start Date")] element StartDate:Date;
  [Label("Close Date")] element CloseDate:Date;
  [Label("Duration")] element Duration:NumberValue;
  [Label("IsOverDue")] element IsOverDue:Indicator;
  action Calculate;
}

And the logic of Calculate action is very simple, just make comparison between current date and the close date. If the current instance is over due, also store the duration to field “Duration”.

import ABSL;
import AP.PC.IdentityManagement.Global;
import AP.FO.BusinessPartner.Global;

var current = Context.GetCurrentGlobalDateTime( );
var close = this.CloseDate.ConvertToGlobalDateTime();
this.IsOverDue = current.GreaterThan(close);
this.Duration = 0;
if( this.IsOverDue ){
   this.Duration = current.Delta(close).ConvertToDays();
}

Then go to work center Administrator->OData Service Explorer, create a new Custom OData Service:

Create a new function import for this OData service, choose Action as import type, specify “DueCheck” as import name, and bind the BO action Calculate to this function import.

Now test the function import via this BO instance below:

first get its object id by Agreement ID via OData filter operation:

https:///sap/c4c/odata/cust/v1/zjerrytestodataservice/TestBORootCollection?$filter=AgreementID eq ‘JERRY2’ Then execute the url appended with the object id found in previous step plus the function import name: https:///sap/c4c/odata/cust/v1/zjerrytestodataservice/DueCheck?ObjectID=’00163E20C98D1EE7A6BD2FF6E7D3F03F’, and the BO action is successfully executed: you could observe the flag isOverDue and field Duration are correctly calculated and returned by this OData service.