Returned when a character constant longer than 1024 characters in length appears in the specification file.
If a string longer than 1024 characters is required, define multiple variables in the VAR section, each a subset of the full string. Another variable can then be defined using the concatenation of these substring variables, for example:
VAR
{
VAR1 'substring1'
VAR2 'substring2'
VAR3 'substring3'
VARSTRING (%VAR1 + %VAR2 + %VAR3)
}
The “VARSTRING” variable can be referenced wherever the full string is required. For instance: