FORM Routine Basics
Task
Create a FORM routine and call it from the main program to display a message.
Write Your ABAP Code
Loading...
📥 Sample Input & Output
Input Text: Hello ABAP Output: Hello ABAP
💡 Hint
Define a FORM and call it using PERFORM.
✅ View Reference Solution
PERFORM display_text. FORM display_text. WRITE lv_text. ENDFORM.