Use FIELDSET contents

A Field from FIELDSET can be used anywhere in a Template script where KCM expects a value with type TEXT.

ASSIGN FieldSet.Field := "42" 
ASSIGN address_line[3] := FieldSet.ZIPCode + " " + FieldSet.City 
ASSIGN variable := lookup_map [ FieldSet.Key ] 
#@(FieldSet.Field)# 

If a Field that is not in the FIELDSET is used, it is treated as if the Field was assigned an empty TEXT value.