2017 Nov 26 8:50 AM
I'm wondering if there is any way to comment out part of a line, like you can do in c++ with /*this*/
. The only comments I know about are " this
which always goes to the end of the line and the *these
, which do not work mid-line.
Is it possible? abap has surprised me a few times before.
2017 Nov 26 11:43 AM
2017 Nov 26 9:15 AM
Hi
not possible
only star at the beginning of a column or " anywhere in a line and comment all the rest of the line
regards
Fred
2017 Nov 26 11:43 AM
2017 Nov 26 12:31 PM
I agree with Horst and Frédéric. Anyway, as ABAP has usually long statements, it's frequent to use several lines for one statement, so the " can be used at the end of every line, so in the middle of the statement, achieving almost the same goal.
2017 Nov 27 7:39 AM