SOAPAllowRequiredInputs
Whether the provider exposes SOAP operations with required inputs as tables.
Data Type
bool
Default Value
false
Remarks
As described in Prompts, there are several types of inputs that a Workday SOAP operation may accept. By default the add-in does not expose tables for operations with required inputs. This ensures that all tables can be read using simple queries like SELECT * FROM Organizations. Many tools use this kind of query internally to preview and sample data.
Setting this proeprty to true disables that validation.
In this mode the add-in does not check whether the inputs to a SOAP operation are required or optional.
This makes several new tables available, approximately 100 under WSDLVersion=v45.2 with default settings.
However, you must check the documentation for the relevant SOAP service and ensure all the required inputs are provided.
SELECT * FROM Financial_Management.Ledgers WHERE Actuals_Ledger_Reference_WID_RequestRef = '4594d94906f34a939fe09ed3436f9f2d' /* If an Actuals_Ledger_Reference is not provided, Workday reports the validation error: "Validation error occurred. Element Content 'Request_Reference' is required" */