Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
xml
xml
<explorerTask name="Forecasts">
  <predefinedDisplay>topology tree</predefinedDisplay>
  <toolbarTask>false</toolbarTask>
  <menubarTask>false</menubarTask>
  <toolWindow>true</toolWindow>
  <loadAtStartup>true</loadAtStartup>
</explorerTask>

Trim Output

Since 2024.02 the <trimOutput> element for transformations is an enumeration of options:

  • true (trims start and end)
  • false (trims neither start nor end)
  • startOnly (trims only the start)
  • endOnly (trims only the end)

Trimmed values of the output will be removed before writing the data to the database. This can prevent existing values to be overwritten with missings. This has been backported as far as 2023.02.

Prior to 2024.02:

A boolean option <trimOutput> is available within transformations. When true, missing values at the start and end of the output will be removed before writing the data to the database. This can prevent existing values to be overwritten with missings.

...