Missing Separator

Separators (spaces, commas, colons, periods, or new lines) are required in ABAP Objects following literals and offset/length definitions.

In ABAP Objects, the following statements cause an error message:

CONCATENATE 'fgfdg'f INTO g.

WRITE AT /off(len)'...'.

Correct syntax:

CONCATENATE 'fgfdg' f INTO g.

WRITE AT /off(len) '...'.

Reason:

Unification of the statement syntax. The next part of a statement (token) must never be written directly following another token. A valid separator must always separate them.