Online Classes SAP ERP ABAP Data
SAP ERP ABAP 7.4 (Object oriented) DATA •Define variables with the DATA statement •Define constants •Apply type conversions •Explain arithmetic expressions •Perform date calculations •Use parameters (checkboxes and radio buttons) •Create selection screen boxes Predefined Data Types and Their Attributes Predefined Data Types and Their Attributes in SAP ABAP we have many type of data type to hold the value into the variables, from above table you can have a idea about the data type and meaning of datatype. Type-Specific Output below chart will give us the idea about type Specific output. Data Types in ABAP like other programming languages SAP ABAP have data types, which are divided into two categories, Elementary and structured, the Structured is further divided into Structure and internal table. Data Declaration - DATA Statement To store values in any variable we need to do the data declaration, we can only assign a value to a variable if the contain and value have the same datatype. R...