rrAppend

Appends the value of the source object to the specified field.

Syntax

bool rrAppend (string varSource, string varTarget)

Parameters

Two Smart Parameters:
  1. The source value.
  2. A reference to the target field.

Both parameters are optional. If a parameter is not specified, it will default to the calling object. If the calling object is a field, it will use the field value.

Returns

False if the action cannot locate the target object or if the source value is empty. Otherwise, True.

Level

All

Details

The action retrieves the value of the source object, and appends it to the target value.
Example
rrAppend("@D.DocID","@F")   
This action inserts the current calling object's parent DocID variable value and appends it to the calling field's value.
Note: Target can not be a variable. If the source and target are the same, the action has no effect.