ABAP Programming Rules
Before starting programming part we need to know types of consultant in SAP.
![]() |
types of SAP Consultant |
There are some rules which is more important in ABAP Programming:
- Each and every statement we write in abap must end with period(.).
- ABAP statements/Keyword are not case sensitives. ex: write, WRITE, WritE
- ABAP is space sensitive.
Ex: z=x+y (invalid)
z = x + y (valid)
- Strings are enclosed in single quotes.
Ex: 'welcome to abap'
- '*' or " used for commenting.
Ex: 1.'*' used at beginning of line to comment entire line
2. " used at middle of line to comment rest of line.
- To Comment block of line --> select the block of line, choose Ctrl + <.
- To uncomment block of line --> select the block of lines, choose Ctrl + >.
Note:- If anybody want some example of these all topic then kindly send/comment your mail id, i will send the all examples through mail in word format.
**Kindly like and share these all topic with your friends**
0 Comments