|
<< Click to Display Table of Contents >> Navigation: All About ABAP Technique > Indonesia > ABAP Tutorial > Tipe Data ABAP > Tipe Data Definisi User > Tipe Kompleks |
Complex types merupakan data type yang terdiri dari beberapa data types.
Contoh :
>> Kode Sintak
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)