007 Data Types

You might also like

Download as ppt, pdf, or txt
Download as ppt, pdf, or txt
You are on page 1of 6

Data Types

1
Data Types
Fixed Length
Elementary
Variable Length

Structure
Data Types Complex
Table Types

Data Reference
Reference
Object Reference
2
Elementary Types
• Fixed-Length Elementary Types
There are eight predefined types in ABAP with fixed
length:
– Four character types:
Character (C) Numeric character (N)
Date (D) Time (T).
– One hexadecimal type:
Byte field (X).
– Three numeric types:
Integer (I) Floating-point number (F)
Packed number (P).
3
Elementary Types
• Variable-Length Elementary Types
– There are two predefined types in ABAP
with variable length:
• STRING for character strings
• XSTRING for byte strings

4
Complex Types
• Structures
• Internal Tables

5
Reference Types
• Reference types describe data objects
that contain references (pointers) to
other objects (data objects and objects
in ABAP Objects).

You might also like