VOOZH about

URL: https://www.cdata.com/kb/tech/saparibasource-odata-azure-logic-app.rst

⇱ Trigger SAP Ariba Source IFTTT Flows in Azure App Service


Trigger SAP Ariba Source IFTTT Flows in Azure App Service

πŸ‘ Jerod Johnson
Jerod Johnson
Director, Technology Evangelism
Automate IFTTT (if-this-then-that) workflows for SAP Ariba Source with standard wizards in Logic Apps.

Through standards-based interfaces like OData and Swagger, the CData API Server provides a native experience in Logic Apps and Power Automate with SAP Ariba Source. OData enables real-time connectivity to data; Swagger enables scaffolding, or code generation, of wizards in Logic Apps and Power Automate, as well as scaffolding Power Apps. This article shows how to add SAP Ariba Source to an IFTTT (if-this-then-that) workflow in a Logic App.

Set Up the API Server

If you have not already done so, download the CData API Server. Once you have installed the API Server, follow the steps below to begin producing secure SAP Ariba Source OData services:

Connect to SAP Ariba Source

To work with SAP Ariba Source data in a Logic App, we start by creating and configuring a SAP Ariba Source connection. Follow the steps below to configure the API Server to connect to SAP Ariba Source data:

  1. First, navigate to the Connections page.
  2. Click Add Connection and then search for and select the SAP Ariba Source connection. πŸ‘ Selecting a data source (SQLite is shown)
  3. Enter the necessary authentication properties to connect to SAP Ariba Source.

    In order to connect with SAP Ariba Source, set the following:

    • API: Specify which API you would like the provider to retrieve SAP Ariba data from. Select the Supplier, Sourcing Project Management, or Contract API based on your business role (possible values are SupplierDataAPIWithPaginationV4, SourcingProjectManagementAPIV2, or ContractAPIV1).
    • DataCenter: The data center where your account's data is hosted.
    • Realm: The name of the site you want to access.
    • Environment: Indicate whether you are connecting to a test or production environment (possible values are TEST or PRODUCTION).

    If you are connecting to the Supplier Data API or the Contract API, additionally set the following:

    • User: Id of the user on whose behalf API calls are invoked.
    • PasswordAdapter: The password associated with the authenticating User.

    If you're connecting to the Supplier API, set ProjectId to the Id of the sourcing project you want to retrieve data from.

    Authenticating with OAuth

    After setting connection properties, you need to configure OAuth connectivity to authenticate.

    • Set AuthScheme to OAuthClient.
    • Register an application with the service to obtain the APIKey, OAuthClientId and OAuthClientSecret.

      For more information on creating an OAuth application, refer to the Help documentation.

    Automatic OAuth

    After setting the following, you are ready to connect:

      APIKey: The Application key in your app settings. OAuthClientId: The OAuth Client Id in your app settings. OAuthClientSecret: The OAuth Secret in your app settings.

    When you connect, the provider automatically completes the OAuth process:

    1. The provider obtains an access token from SAP Ariba and uses it to request data.
    2. The provider refreshes the access token automatically when it expires.
    3. The OAuth values are saved in memory relative to the location specified in OAuthSettingsLocation.
    πŸ‘ Connecting to a datasource (SQLite is shown)
  4. After configuring the connection, click Save & Test to confirm a successful connection.

Configure API Server Users

Next, create a user to access your SAP Ariba Source data through the API Server. You can add and configure users on the Users page. Follow the steps below to configure and create a user:

  1. On the Users page, click Add User to open the Add User dialog.
  2. Next, set the Role, Username, and Privileges properties and then click Add User. πŸ‘ Configure a new user
  3. An Authtoken is then generated for the user. You can find the Authtoken and other information for each user on the Users page: πŸ‘ API Server user settings

Creating API Endpoints for SAP Ariba Source

Having created a user, you are ready to create API endpoints for the SAP Ariba Source tables:

  1. First, navigate to the API page and then click Add Table . πŸ‘ Add tables
  2. Select the connection you wish to access and click Next. πŸ‘ Select the connection (SQLite is shown)
  3. With the connection selected, create endpoints by selecting each table and then clicking Confirm. πŸ‘ Adding tables from the connection (SQLite is shown)

Gather the OData Url

Having configured a connection to SAP Ariba Source data, created a user, and added resources to the API Server, you now have an easily accessible REST API based on the OData protocol for those resources. From the API page in API Server, you can view and copy the API Endpoints for the API:

πŸ‘ API Endpoints

Access SAP Ariba Source in a Logic App

You can use the API Server in a Logic App to create process flows around SAP Ariba Source data. The HTTP + Swagger action provides a wizard to define the operations you want to execute to SAP Ariba Source. The following steps below show how to retrieve SAP Ariba Source data in a Logic App.

If your table has a column containing the creation date of a record, you can follow the steps below to write a function to check the column values for any new records. Otherwise, skip to the Create a Logic App section to send out emails to entities that match a filter.

Check for New SAP Ariba Source Entities

To find new SAP Ariba Source entities since a certain time, you can write a function that retrieves a datetime value for the start of the interval:

  1. In the Azure Portal, click New -> Function App -> Create.
  2. Enter a name and select the subscription, resource group, App Service plan, and storage account.
  3. Select your Function App and select the Webhook + API scenario.
  4. Select the language. This article uses JavaScript.
  5. Add the following code to return the previous hour in a JSON object:
    module.exports = function (context, data) { 
     var d = new Date();
     d.setHours(d.getHours()-1); 
     // Response of the function to be used later.
     context.res = { 
     body: { 
     start: d 
     } 
     }; 
     context.done(); 
    };
    

Add SAP Ariba Source to a Trigger

Follow the steps below to create a trigger that searches SAP Ariba Source for results that match a filter. If you created the function above, you can search for objects that were created after the start of the interval returned.

  1. In the Azure Portal, click New and in the Web + Mobile section select Logic App and select a resource group and App Service plan.
  2. You can then use the wizards available in the Logic App Designer, which can be accessed from the settings blade for the Logic App. Select the Blank Logic App template.
  3. Add a Recurrence action that will poll for the SAP Ariba Source objects. This article polls every hour. Select the timezone -- the default is UTC.
  4. Add a function action: Expand the menu in the Add Action dialog and select the option to show Azure functions in the same region. Select the Function App you created earlier and select the function that returns the interval start.
  5. Enter an empty pair of curly brackets, "{}", to pass an empty payload object to the function.
  6. Add the HTTP + Swagger action and enter the swagger URL of the API Server:
    http://MySite:MyPort/api.rsc/@MyAuthtoken/$oas
  7. Select the "Return Vendors" operation.
  8. Use the descriptions for each property to specify additional parameters such as the columns to retrieve, filters, etc. Below is an example filter:

    Region eq 'USA'

    The API Server returns the descriptions and other documentation in the swagger document. You can find more information on using the OData API and supported OData in the API Server help documentation.

  9. To use the datetime value returned from the getInterval function, use the "ge" operator with a datetime column in the Vendors table and select the Body parameter in the dialog. Note that quotes must be used to surround the datetime value.

    πŸ‘ An OData filter on the results of an Azure Function App, getToday. (Salesforce is shown.)
  10. Switch to Code View and modify the $filter expression to extract the property containing the start of the interval. Use the syntax '@{body('MyFunc')['MyProp']'.

    "getAllAccount": {
     "inputs": {
     "method": "get",
     "queries": {
     "$filter": "CreatedDate ge '@{body('getInterval')['start']}'"
     },
     "uri": "https://MySite:MyPort/api.rsc/@MyAuthtoken/Vendors"
     }
    

You can now access SAP Ariba Source as data sources and destinations in your workflows.

Email New Records

Follow the steps below to email a report with any new Vendors entities.

  1. In the Logic Apps Designer, add an SMTP - Send Email action.
  2. Configure the necessary information for the SMTP server.
  3. Configure the From, To, Subject, and Body. You can add parameters from the SAP Ariba Source columns returned.

Click Save and then click Run to send email notifications on any SAP Ariba Source records created in the last hour.

πŸ‘ Dynamic columns added to template the body of an email. (Salesforce is shown.)