โ˜๏ธ
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

Was this helpful?

  1. Flow Development with OData
  2. Implementation
  3. Operation specific notes

Read

If reference entities are included in response and they end up being empty, use nil to test whether reference entity record is empty or not.

{case when OneCustomer.InternalCustomerRef != nil then โ€‹OneCustomer.InternalCustomerRef.Description else '' end}โ€‹

PreviousWIP - CreateNextConfiguration

Last updated 2 years ago

Was this helpful?

๐Ÿ‘ฉโ€๐Ÿ’ป