0% found this document useful (0 votes)
15 views

What Is Abap - 1

ABAP is a programming language developed by SAP for building business applications. It is not case sensitive and uses keywords to begin statements that end with periods. Statements can be chained together by writing the common part once followed by a colon and the remaining parts separated by commas to condense multiple statements. Comments are added using asterisks at the start of a line or double quotes within a line.

Uploaded by

Vikram Bigamudre
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views

What Is Abap - 1

ABAP is a programming language developed by SAP for building business applications. It is not case sensitive and uses keywords to begin statements that end with periods. Statements can be chained together by writing the common part once followed by a colon and the remaining parts separated by commas to condense multiple statements. Comments are added using asterisks at the start of a line or double quotes within a line.

Uploaded by

Vikram Bigamudre
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

ABAP stands for Advanced Business Application Programming. It is a programming language developed by SAP.

ABAP language syntax


ABAP is not case sensitive. Every statement begins with a keyword and ends with a period.( WRITE is the keyword to print on screen )
WRITE 'Hello World!'.

Chained statements.If consecutive statements have identical part at the beginning, then ABAP allows you to chain these statements into a single statement. First write the identical part once and then place a colon (:). Then write the remaining parts of the individual statements separated by commas.Normal Statements:
WRITE 'Hello'. WRITE 'ABAP'.

Chained Statement:
WRITE: 'Hello', 'ABAP'.

Comments.If you want to make the entire line as comment, then enter asterisk (*) at the beginning of the line.
* This is a comment line

If you want to make a part of the line as comment, then enter double quote () before the comment.
WRITE 'COMMENT'. "Start of comment

You might also like