SAP NetWeaver AS ABAP Release 740, ©Copyright 2014 SAP AG. All rights reserved.
Missing Separator
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.