Complex Types

<< Click to Display Table of Contents >>

Navigation:  All About ABAP Technique > English > ABAP Tutorial > ABAP Data Types > User-Defined Data Types >

Complex Types

Complex types are data type which consist of many data types.

 

Example :

>> Source Code

types : begin of ty_wa,
         a type i,
         b type i,
         hasil type p decimals 2,
      end of ty_wa.
 
Data : l_wa1 type ty_wa.         " Sturcture (Workarea)