What is an example of using Tokens?
Using Multiple Tokens in a Bundle Field
You can combine tokens from different data sources (namespaces) to dynamically populate fields in your bundle. For example:
Scenario:
You want to include both the Document Definition name and the Loan Number in a single field.
Namespaces:
DOCDEF– Refers to the Document Definition object.CONTAINER– Refers to the Loan object from your LOS integration.
Tokens:
$$DOCDEF.name$$
$$CONTAINER.loanNumber$$
Example Usage in a Field:
You could enter the following in a bundle field (e.g., Description or File Name):
Document: $$DOCDEF.name$$ | Loan #: $$CONTAINER.loanNumber$$
When the bundle is executed, XDOC will replace the tokens with actual values, such as:
Document: W2 Form | Loan #: 123456789