Include
Reuses a form defined in another file, instead of repeating it in every file.
To avoid implementing recurring forms (for example, search forms) in every file or to get a better overview of the forms, you can define a form which can be reused in several files.
You can import further definition files with the key word Include.
Example:
<FormList>
<Include file="Template.xml" />
<Form ....>
...
</Form>
...
</FormList>
After the import of the file "Template.xml", all forms of this file are available.
| Attribute | Mandatory | Description | Example |
|---|---|---|---|
| file | yes | Name of the Form-XML file to be imported. The file name has to end with .xml. |
file="Template.xml" |
Updated on Aug 11, 2026