respAddStringValue()

This procedure adds String value for existing field.

ParameterTypeDescription
ptrPOINTERMandatoryPointer to field
stringValue1024A VARYING, VARSIZEMandatoryString value
escapeNOptional*ON or *OFF (Default = *ON) Indicates if value must be “escaped” means add ‘' escape character

The procedure returns pointer of field. If procedure can’t add value, then returns null.

Examples:

xxPtr = respAddField('data': 'warehouse');
respAddStringValue(xxPtr: SRSROM);

respAddStringValue(xxPtr: SRSROM: *OFF);