Add values to FIELDSET

Before using Fields from a Field Set in a Text Block, you should assign them values. Use <name of the FIELDSET>.<name of the field> to refer to a field and to assign a value to a field. For example, FieldSet_x.Field1 refers to Field1 in FIELDSET FieldSet_x. Assigning a value to a field in a FIELDSET is done in the same way as assigning a value to a variable.

The values assigned to a field in a FIELDSET must be of the type TEXT. Field Sets that are part of the Data Backbone can be accessed using through the _data variable. You can assign values directly to the Fields in a Field Set, but you can also use Input XMLs or Data Retrieval to assign values to Fields of the Field Set in the Data Backbone

ASSIGN FieldSet_x.Field1 := “This is the value of Field1”

In this example, the new value is assigned to the Field1 in the FIELDSET FieldSet_x. Every instance of the FieldSet_x.Field1 in a Text Block is replaced by "This is the value of Field1" when that Text Block is inserted in the result document.