ABAP

Appeared in:
1983
Influenced by:
Paradigm:
Typing discipline:
Programming language

ABAP (abbreviation for Advanced Business Application Programming) is a proprietary programming language for use with SAP NetServer.

Elements of syntax:

Inline comments * (start of line) or " (midline)
Case-sensitivity No
Variable identifier regexp [A-Za-z]*
Function identifier regexp [A-Za-z]*
Variable assignment =
Variable declaration DATA: ... TYPE ?
Comparison <>
Function definition CALL FUNCTION '(function name)'
Function call with no parameters FUNCTION REUSE_ALV_LIST_DISPLAY
If - then IF (condition).