Use Polymorphic Business Objects and Fields
Where and how a polymorphic business object can be used in a layout depends on its relationship with other business objects in the service.
If a polymorphic business object is a top-level business object or is a child business object with a "one-to-many" relationship with its parent, it can be used directly in a layout.
In this case, you create a layout for polymorphic business objects as you do for any other business objects. See Create a Table Layout in an Excel Workbook and Create a Form-over-Table Layout in an Excel Workbook.
If a child polymorphic business is in a "one-to-one" relationship with its parent, descriptive flexfields from the child can be added as fields to a layout bound to its parent business object during layout creation. See Create a Layout Using Descriptive Flexfields.
You can also add descriptive flexfields to an existing layout as described in Add Descriptive Flexfields to a Layout.
To determine the relationship of a child business object to its parent, see Check the Cardinality of Child Polymorphic Business Objects.
About Polymorphic Business Objects
For example, an "Employees" business object may include a child polymorphic "Regional Information" business object that defines region-specific information for employee records. The Regional Information business object contains a "Region" field that acts as a discriminator field. It also contains global segments for all records, such as "Site" and "Time Zone", as well as context-sensitive segments such as a "Postal Code/Zip Code" for employees in the North American region.
Check the Cardinality of Child Polymorphic Business Objects
You can determine if a child business object is in a "one-to-one" or "one-to-many" relationship with its parent by checking the "cardinality" setting for a child business object.
Child polymorphic business objects with a "one-to-many" relationship can be used directly in a layout. For those child business objects in a "one-to-one" relationship, you can add descriptive flexfields from the child to the parent business object layout.
To check the cardinality setting for a child business object, open the Business Object Editor for the parent business object, then click the Children tab.
Cardinality options are "One", "Many", or "Unknown". Child business objects with a cardinality of "Many" (one-to-many relationship) can be used directly in a layout. Those with a cardinality of "One" can be added as fields to the parent business object layout. See Create a Layout Using Descriptive Flexfields.
Note:
For workbooks created before Oracle Visual Builder Add-in for Excel version 3.2, the cardinality is set to "Unknown". This value behaves identically to a value of "One" for polymorphic business objects. The cardinality value does not impact the behavior of non-polymorphic business objects.Create a Layout Using Descriptive Flexfields

Top-level polymorphic business objects as well as child business objects with a "one-to-many" relationship with their parent can also be added to the layout as you would any other business object. See Create a Table Layout in an Excel Workbook and Create a Form-over-Table Layout in an Excel Workbook.
To determine the relationship of a child business object to its parent, check its Cardinality setting. See Check the Cardinality of Child Polymorphic Business Objects.
To create a layout with DFFs:
In this example, the add-in creates a Form-over-Table layout with Employees in the form and Direct Reports in the table as shown in this image:
The add-in also adds the Region flexfields from EmployeesDFF to the form (bordered in red). The flexfields include a "discriminator" field ("Region"), two global segments ("Site" and "Time Zone"), and two context-sensitive segments ("Zip Code" and "State"). The context-sensitive segments are dependent on the value of the Region field (in this case, "United States").
If the required flexfields do not appear in the layout by default, you can add them to your form or table from the Layout Designer. See Add Descriptive Flexfields to a Layout.
You can also show or hide context-sensitive segments based on the discriminator value. For example, you could choose to show the context-sensitive segments for Canada ("Postal Code" and "Province"), rather than the U.S. segments, ("Zip Code" and "State"). See Show or Hide Context-Sensitive Columns in a Table Layout.
Add Descriptive Flexfields to a Layout
Note:
For polymorphic business objects in a one-to-many relationship, refer to Create a Layout Using Descriptive Flexfields instead.- Open the worksheet with the layout that you want to modify.
- Click either the Form or Columns tab in the Layout Designer as needed.
- Click the Manage Form Fields or Manage Columns button (
) to add your DFF.
Available DFFs are identified by the title of the discriminator field (in this case, "Region") and appear at the bottom of the list of available fields. The field ID is the discriminator field ID ("__FLEX_Context").
- Select the DFF from the Available Fields list.
You can also change the order of fields in the form or table by dragging and dropping fields in the Selected Fields list.
- Click Done.
The associated segments appear in the layout in the following order: global segments, the discriminator, and context-sensitive segments.
Context-sensitive columns for all possible discriminator values are included in the table. However, only those cells in a row that are relevant to the value in the discriminator field are editable. All other context-sensitive cells are read-only (grayed out).
In a form, the context-sensitive form fields relevant to the current discriminator value appear after the discriminator field. Context-sensitive fields that are not relevant are not included in the form. If you change the value in the discriminator field, the form automatically updates to include the relevant context-sensitive field for that value.
Show or Hide Context-Sensitive Columns in a Table Layout
You can select which context-sensitive columns you want to display for a polymorphic business object, using the Polymorphic Information tab of the Business Object Field Editor.
All context-sensitive columns are shown by default. You may want to use this task to hide columns in a layout. For example, in the case of a Region polymorphic business object, you may choose to show regional information only for U.S. employees and hide it for all others.
To show or hide context-sensitive columns:
The layout displays the context-sensitive segment columns you selected.
Refresh Polymorphic Business Object Metadata
Clear polymorphic metadata when you publish a workbook to ensure the workbook gets the latest metadata. Oracle Visual Builder Add-in for Excel refreshes the polymorphic business object metadata during the first download operation performed after you open the published workbook.
Polymorphic Support Limitations
Before creating layouts for polymorphic business objects or adding descriptive flexfields to a layout, review the limitations here:
- Polymorphic business objects are only supported for ADF REST services.
- A polymorphic business object is assumed to only contain a single discriminator field. Multiple discriminators are not supported.
- The discriminator field must be a string.
- When a polymorphic column or form field expands, the order is global segments, the discriminator, and then context-sensitive segments. Note that:
- Changing the order of the global segments or context-sensitive segments is not supported.
- Hiding specific global or context-sensitive segments is not supported.
- In order to bind a polymorphic business object to a layout, it must expose polymorphic business object metadata. In an OpenAPI metadata document, this means that it must contain a "discriminator" and "oneOf" syntax in the schema for the business object. The "anyOf" polymorphic business object syntax is not supported.
- Hierarchical polymorphic business objects are not supported. All polymorphic segments must be defined directly on the polymorphic business object in the OpenAPI metadata document.
- Extensible Flexfields (EFFs) that define polymorphic segments on array-based subfields are not supported.
- When a layout contains a polymorphic business object, the "fields" and "expand" query parameters should not be manually configured in the "Search Parameters" in the "Query" tab of the designer.
- The case where a child business object's fields are determined by a parent business object's discriminator value is not yet supported.
- Limiting discriminator values for a polymorphic business object displayed in a Table layout does not limit:
- The set of values that can be chosen in a list of values (LOV) for a discriminator field
- The values users can provide for a discriminator field
- Polymorphic segments with a
DISPLAYHINT
value ofHide
in the metadata are not displayed in the layout. If hidden segments are required, upload may fail.