IncludeCustomFields Parameter (Connect-XeroWorkflowMax Cmdlet)
Determines if Custom Fields should be included as table columns or not. Including CustomFields will impact the performance.
Syntax
Connect-XeroWorkflowMax -IncludeCustomFields string
Data Type
cstr
Default Value
"false"
Remarks
It is possible to create custom fields in Xero WorkflowMax. To retrieve their values you can set IncludeCustomFields=true as a connection property.
Doing so will list the custom fields created as table columns. These custom fields can also be updated for ex.
UPDATE Costs SET CF_1='new CF value' WHERE ID='CostID'Note: You can still update custom fields even when a specific table doesn't support UPDATE operation.
Custom Fields are very expensive. They require one request per record to retrieve. For this reason, they are disabled by default.