Elementary Data Types
Task
Declare and work with elementary ABAP data types such as I, STRING, and D.
Write Your ABAP Code
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.