May 2019
Beginner to intermediate
548 pages
12h 39m
English
After learning about the objects in the Data Dictionary, we can start talking about the syntax declaration in ABAP. The easiest way to declare variables is as follows:
data: lv_first_variable TYPE c.
Variables are named data objects that are used to store values within the allotted memory area of a program. It is good practice to properly name local variables. It is assumed that the first two characters in the variable name determine its use. The first letter indicates whether the variable is global or local. If the local variable starts with l, then in the case of global variables, g is the first letter. The second character determines what type the object is:
Each variable must have ...
Read now
Unlock full access