Examples
- Last UpdatedOct 31, 2024
- 1 minute read
The following examples are mainly taken from the templates supplied with the product.
|
To insert a page number containing the text Page number, followed by the page number, use the !pageno variable: |
|
|
|
'Page No. ' + vtext (!pageno) |
|
To insert the user’s name in the form of the text User Name: followed by the name, use the AVEVA E3D™ global variable !!user: |
|
|
'User name: ' + vtext(!!user) |
|
|
To insert the date and time, use the report variables !date and !time: |
|
|
'Date: ' + vtext(!date) + ' ' + vtext(!time) |
|
|
To insert a blank line, use: |
|
|
'' |
|
|
To insert the hierarchy reported on, use: |
|
|
'Nozzle Schedule for ' + vtext(!selhierarchy) |
|
|
To insert the number of elements reported on, use, for example: |
|
|
'Summary: ' + vtext(!selsize) + ' Nozzles in Schedule' |
|