Selecting Data Items
You can specify in the <Select>
element which particular
data items present in the payload definition are to be returned. For example:
<Select> <Accounts> <AccountCode/> <AccountType/> <Description/> </Accounts> </Select>
In this example, it is Account Code, Account Type and Description that are returned. The number of data items that you can include is unlimited.
To have all data items returned, simply set the <Select>
element to the component name and specify the value as '*' asterisk. For example:
<Select> <Accounts>*</Accounts> </Select>
Alternatively, you can simply omit the <Select>
element.