SAP NetWeaver AS ABAP Release 740, ©Copyright 2014 SAP AG. All rights reserved.
Cannot Update Field Labels That Extend over More Than One Line
In ABAP Objects, the following statements cause an error message:
SELECT SINGLE col1 col2 ... coln
FROM dbtab
INTO (wa-col1, wa-col2, ................ , wa-c
oln)
WHERE col1 IN (f1, f2, ..................... , f
n).
Correct syntax:
SELECT SINGLE col1 col2 ... coln
FROM dbtab
INTO (wa-col1, wa-col2, ................ ,
wa-coln)
WHERE col1 IN (f1, f2, ..................... ,
fn).
Cause:
Field labels cannot extend over more than one line on principle. If the line length
in the Editor is increased in a future release, these split field labels will cause syntax errors. The behavior of lists is exceptional and is being adapted to general behavior.