Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
Archana
Product and Topic Expert
Product and Topic Expert
In this last blog of the series I would help you understand how you can access APIs (cloud or on-premise) from workflow task UI.

In the current scenario, all the companies have hybrid environment with SAP, non-SAP, cloud and on-premise systems and solutions. With the new wave of process orchestration, automation and digitization, companies require integration of SAP, non-SAP systems. There are different interfaces (SOAP, RFC, BAPI, IDOC, REST, OData etc.) that are available to establish communication between SAP and non-SAP systems to exchange data.

In SAP Cloud Platform Workflow, the integration channel with other cloud services or SAP S/4HANA or LoB applications is via APIs. Service task is the BPMN task type to call APIs in Workflow and SAP Cloud Platform Connectivity service is the medium to establish the connection between these systems. If the external service is OData or Rest based, then it can be directly consumed from Workflow using destination. For any other interface, cloud integration service is recommended to be used. (learn more about the service task)

 


 

External APIs can also be called from user task UI and it could be little tricky to call these APIs as it is not as simple as filling the configuration properties of the service task.  I would now explain you step-by-step how it can be achieved.

Prerequisite:

  • You have already created an MTA project with workflow module

  • You have already created and designed Fiori Module and configured your workflow user task to this module.

  • You have already created a FLP Module with app-router configurations to access workflow applications


 

Step 1: Create destination


Destination is to be created at sub-account level for connecting to different systems. These systems can be accessed via internet or on-premise. There could be different protocols to access the APIs like Basic Authorization, OAuth, Client Certificate etc. The destination has to be appropriately created based on the supported authentication protocol.

 

Below as the samples for these different destinations. I have picked 3 examples,

  • first one is the northwind with No Authentication,



 

  • then is SuccessFactors destination with Basic Authorization



 

  • Finally, on-premise S/4HANA destination with Basic Authorization.
    Note: For on-premise system there need to be a cloud connector setup.



 

Step 2: Update xs-app.json of Fiori Application


 

  • Create a destination route in xs-app.json


{
"source": "^/NorthWind_Dest/(.*)$",
"target": "/$1",
"destination": "northwind",
"authenticationType": "none"
}

 

Similarly create any other routes for other destinations.

         


 

Step 3: Update mta.yaml of MTA project


As you are trying to access the destination from CF application, you therefore need to add the dependency of destination service and/or connectivity service instance to the app-router from where you are accessing the My Inbox application.

Note: If you are accessing internet based destination then you need only destination service instance dependency. If you are using on-premise based destination then you also have to use connectivity service instance together with destination service.

For this first add the service instance details in the resources section


 

Then add the dependency of the destination and/or connectivity service instance in the app-router.


 

Caution: if you miss this step then the Component.js of your user task UI wont load and you will get 500 – Internal Server Error as the app-router will try and look for the destination.

cdm.js:66 2020-09-07 23:55:46.422770 Cannot create componentsap.demo.bpm.taskui for smart template rendering. Showing standard task in the detail screen as a fallback: failed to load 'sap/demo/bpm/taskui/Component.js' from /sapdemobpmtaskui/Component.js: 500 - Internal Server Error

 

Step 4:  Code Fiori Application to call External API


In the final step, you now have to code your Fiori application to call the needed service. In this example I have coded jQuery.ajax method to call Http URL endpoint for Northwind.


 

Note the URL. It has application ID followed by the route name and then the relative URL
/<applicationID>/<route-name>/<relative-URL>

For Example: I wanted to call this URL in my custom task UI: https://services.odata.org/V3/Northwind/Northwind.svc/Suppliers?$format=json

  • This would be broken up as follows:

    • The destination northwind (in cockpit), will have the url as https://services.odata.org

    • Routes in xs-app.json of the Fiori application will have a route of name Northwind_Dest pointing to above northwind destination created in the cockpit

    • In the AJAX call, the URL will be formed as "/sapdemobpmtaskui/Northwind_Dest/V3/Northwind/Northwind.svc/Suppliers?$format=json

      • where sapdemobpmtaskui is theapplication ID and Northwind_Dest is the source name of the destination route given in xs-app.json

      • Use manifest.json to sap.app --> id to get the application ID






 

<<<<< NEW >>>>>>

If you are using SAP Managed app-router based application then your prefix will be as follows.
/<app-modulepath>/<route-name>/<relative-URL>
For Example: /workflow-sample.sapdemobpmtaskui-1.0.0/Northwind_dest/Northwind.svc/Suppliers

You can use this code to get the module path:

var appId = this.getOwnerComponent().getManifestEntry("/sap.app/id");

var appPath = appId.replaceAll(".", "/");

var appModulePath = jQuery.sap.getModulePath(appPath);

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>




  • In my example, I adjusted the view.xml as well to bind the data from the service call to the UI5 control



 

After you build and deploy the MTA, open the task in the My Inbox and click on the country drop down, you will see the countries getting loaded. (ignore the duplicate country names).



This is how you code your workflow custom task UI application to work with any external API call for any GET, POST, PATCH etc. methods. The same will be applicable with SFSF or any Lob Application APIs or any backend on-premise APIs.

  • For easy learning purpose, I have uploaded the code used in this blog as example in GitHub.

    • Download the content from resources folder, import into SBAS, build and deploy.




 

Related Resources

 
16 Comments