Syntax Overview

From Abap2Java

(Redirected from Syntax overview)
Jump to: navigation, search

ABAP

  • ABAP is not case sensitive.
  • Each ABAP statement is finished with a period ".".
  • Whitespace is sometimes needed (e.g. between operator and their operands).
  • Character strings are included into single quotes (') or back quotes (`).
  • Comments are indicated by a * at the first position of a line (entire line) or a " (rest of the line).
  • Colon (:) and Comma (,) characters are used to build several statements from one. Colon must appear once, followed by one or more commas. The part on the left side of colon is factorized. Examples: DATA: A, B. is equivalent to DATA A. DATA B. CLEAR : A. is equivalent to CLEAR A.

Java

Personal tools