☁️
Flow IFS Cloud Development Guidelines
  • Flow IFS Cloud Development Guidelines
  • 👶Getting started
    • OData Basics
    • IFS Cloud
    • Terminology
    • Useful Applications
    • IFS documentation
      • IFS API Explorer
      • Entity details
    • Setting up the OData connector
      • Configure connection between Flow Server and IFS Cloud
      • Selecting which configurations are visible in Flow Server
  • 👩‍💻Flow Development with OData
    • Architecture
    • Flow development and distribution strategy
    • Implementation
      • Operations in OData machine steps
      • Missing operations
      • Translations
      • Iteration
      • Join data sets
      • Misc Tips and trix
      • Document / Media Library Management
      • Response status handling
        • Errors from IFS
      • Operation specific notes
        • Set input parameters using flow script
        • Update
        • 🛠️WIP - Create
        • Read
    • Configuration
      • Authentication models
        • Setup Client credential flow
        • 🛠️Setup Password credentials flow
        • 🛠️Setup Authorization code flow
        • 🛠️Setup OpenID flow
        • Obtaining Authentication related URLs from IFS Cloud
      • Projection administration
        • Administrating new projections
        • Administrating updated projections
      • Configuring projections in IFS
        • Custom Entities
        • Custom Projections
        • 🛠️WIP - Query Designer
        • Quick Reports
    • Trigger Flows from IFS Cloud
      • Trigger User Flows via External Navigation Links
      • Trigger Machine Flows via BPA using commands
      • 🛠️Trigger Flow via Event Action
    • Debugging and Testing
      • Aurena debugging
        • Inspect in web browser
        • IFS debug console
      • OData Connector Log
  • 🪄Advanced
    • Custom Request
    • C# usage in the OData connector
      • Different methods
      • Building request
      • 🛠️WIP - Code examples
Powered by GitBook
On this page
  • FndODataProvider
  • Projections

Was this helpful?

  1. Getting started

IFS Cloud

PreviousOData BasicsNextTerminology

Last updated 2 years ago

Was this helpful?

With the paradigm shift from on premise installations to cloud hosted ERPs, many of the large vendors has adopted the OData standard to facilitate their integration interfaces. This is also the case for IFS. OData was introduced with IFS 10 and the new web based Aurena client. With the IFS Cloud release the .NET access provider was deprecated and replaced entirely by OData. The logical units and PL/SQL packages are still there but sits beneath the FndODataProvider.

FndODataProvider

Read detailed configuration instructions from, search for OData and FndODataProvider

"IFS OData Provider exposes IFS business entities and business logic through OData endpoints. IFS OData Provider with the help of Apache OLingo do the translation between the OData protocol and the underlying IFS Business Logic."

The IFS OData Provider is responsible for parsing the OData requests, executing the business logic and providing a JSON response.

Projections

The OData services within IFS are called Projections. Projections in are sets of API methods that, in most cases, correspond to a specific page in Aurena. There are for example projections that are designed completely for 3rd party integrations. But most of the 5500+ projections are to support the Aurena functionality, just as packages mainly supported functionally in the Enterprise Explorer in pervious versions. More on projections in the section.

👶
IFS documentation
Translation of a OData call to a SQL query
Terminology