+ Transaction Assignment Operators

Prev Next

Introduction

Transactions with the + prefix operate in a similar way like the | prefix, but following differences apply, aiming to add the data to the existing data in the destination without overwriting the data which is already existing:

  • Existing structure members will not be overwritten
  • However, missing structure members will be created and the data will be written to them
  • Existing array members will not be overwritten
    • For the additional data to be written, additional array members will be created for all of them
  • If the destination is a table, then additional columns may be added to fit the data (dependings on how the target table row is specified)
  • New arrays and/or structures will be created if they are still missing in the destination in order to fit all data to be transferred

Typical Example

Variable to Variable Transaction with | Assignment Operator