Skip to main content
Rewrites the valid_from, id, and/or value of each input dated property. Pairs naturally with Unpack — split a stream into facets, transform the pieces, then reassemble.

Inputs

  • Valid From — replacement dates. Wire a single dated property to apply the same date to every input, or wire a list of dated properties paired by date.
  • ID — replacement IDs. Same pairing rules as Valid From.
  • Set Value — a single dated property whose value replaces the value of every input DP unconditionally. Wire a Const for a fixed default; wire nil if you want to overwrite every input value with nil. Leave unwired to preserve the original values. To apply only to non-nil inputs, route nil inputs around the Update via a Switch.

Tips

  • Leave a port unwired to keep that field unchanged.
  • For multi-value dated properties (a single dated property whose value is a list of multiple values), split with Extract first — Update expects one replacement per row.

Ports