Skip to main content

Elementary Data Types

BeginnerData Types⏱ 10 min

Task

Declare and work with elementary ABAP data types such as I, STRING, and D.

Write Your ABAP Code

ABAP Editor
Loading...
📥 Sample Input & Output
Count: 10
Text: ABAP
Date: SY-DATUM
💡 Hint

Use WRITE statements to display values.

✅ View Reference Solution
lv_date = sy-datum.
WRITE: lv_count, lv_text, lv_date.