set display column()
This function sets the user defined column ("Display 1", "Display 2", "Display 3") b to the value a for this job. If c is set to true an attempt to overwrite a previously set value will be ignored (see examples). The maximum length of a is 50, longer texts are truncated to that length.
The result value of the function is a.
Parameters
Parameter |
Description |
a |
Value to be set. |
b |
Index of the column (1 to 3). See examples. |
c |
(optional) "true" if a previously set value should be kept (see examples). Default: "false". |
Examples
Parameter a |
Parameter b |
Parameter c |
Result |
Value in column |
Text |
1 |
|
Text |
Text |
Text2 |
1 |
|
Text2 |
Text2 |
Text3 |
1 |
true |
Text3 |
Text2 |
Customizing column names globally in configuration file
A configuration file ./etc/admin/datawizard/customHeader.properties can be used to set alternative names for the columns (instead of Display 1, Display 2, Display 3) globally (i.e. for every profile and each client) with col1, col2, col3. The index in the function is then used analogously, i.e. index 1 for col1, etc. Note: Normally it is sufficient to reload the log overview. Otherwise, please restart the Integration Server.
col1=Text
col2=Text2
col3=Text3