2
votes

I have a table binding and consuming the publicly available OData service from the ES4 SAP system. My root entity set is ProductSet and it has 2 navigation properties: ToSupplier and ToSalesOrderLineItems.

I am able to issue the $expand parameter in the table bindings as follows, but could you please assist me in how I can pass both navigational properties so that the OData service expands both ToSupplier + ToSalesOrderLineItems?

<Table items="{
  path: '/ProductSet',
  parameters: {
    expand: 'ToSupplier'
  }
}">
1

1 Answers

15
votes
expand: "ToSupplier,ToSalesOrderLineItems"

If "ToSupplier" was a parent of "ToSalesOrderLineItems" then it would look like this:

expand: "ToSupplier/ToSalesOrderLineItems"