ABAP

Comments

End of Line

Any text following a " character on the same line is commented out:

DATA ls_booking TYPE flightb. " Commented text

Full Line

The * character comments out an entire line. The * must be the first character in the line.

* DATA ls_booking TYPE flightb. Nothing on this line will be executed.

This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow