TDV Adapter for Workday

Build 22.0.8462

ExpandMultiValues

Determines if multi-instance fields are expanded into separate rows.

Data Type

bool

Default Value

false

Remarks

The behavior of this option depends upon the service you are connecting to. Please refer to the WQL section for an overview, as the reporting and SOAP sections only cover details specific to those services. Also refer to ExpandMultiValueLimit to understand the performance consequences of enabling this option.

WQL

WQL uses multi-value fields to reference multiple rows from another table, such one journal entry referencing multiple journal line items. By default the adapter displays these as JSON aggregates which must be parsed to get individual values.

workdayID orderNumber lineItem
01234 1 [{"id": "123abc", "descriptor": "..."}, {"id": "234bcd", ...}, {"id": "345cde", ...}]
56789 2 [{"id": "456def", "descriptor": "..."}, {"id": "567fea", ...}]

Enabling this option expands each of these multi-value references across multiple rows. The adapter separates out each aggregate into an ID column and a descriptor column (the same as single-value ID fields). It also generates a new field called workdayIDIndex that counts the number of rows expanded from one WQL row. The workdayID and workdayIDIndex form a composite primary key, instead of the workdayID being the primary key on its own.

workdayID workdayIDIndex orderNumber lineItem.id lineItem.descriptor
01234 1 1 123abc ...
01234 2 1 234bcd ...
01234 3 1 345cde ...
56789 1 2 456def ...
56789 2 2 567fea ...

The adapter only expands rows that are included in the SELECT clause of the query. If more than one multi-value reference is selected, its values are combined with the other multi-value fields using a CROSS JOIN. This ensures that all combinations are included in the output so they can be used in WHERE or JOIN conditions.

Reporting

The reporting API behaves similarly to the WQL API, with two main differences. The first is that two extra columns are added instead of just one. One is called RowIndex and it behaves the same as workdayIDIndex. The other is called RowNumber and it counts the number of original rows from the report. It is included because reports do not have a built-in primary key like WQL data sources do.

The second is that reporting supports the ExpandIDTypes option. By default single-value IDs are treated as multi-value fields and expanded in the same way. This is because even single-value references can have a separate value for each type of ID. If ExpandIDTypes is enabled then each type of ID gets its own column and only multi-value references are expanded across rows.

SOAP

The SOAP API exposes a more complex data model with different types of repeated values:

  1. Mutli-value references that are similar to WQL and reporting multi-value references.
  2. Basic multi-value fields like Address_Line_Data in the Workers_Address_Data table.
  3. Complex multi-value structures that contain multiple fields.

This property only applies to the first two types because complex repeated structures are always exposed as child tables. The other two types behave similarly to WQL and reporting APIs with a few exceptions:

  • Multi-value references have only an ID. No descriptor is included.
  • If the table normally has a primary key, the adapter adds only an IDIndex column that behaves like workdayIDIndex. Otherwise the adapter adds a row counter called RowID in addition to the IDIndex column.

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462