Structure Definition
Task
Define a structured data type and assign values to its fields.
Write Your ABAP Code
Loading...
📥 Sample Input & Output
ID: 1 Name: John
💡 Hint
Access structure fields using -.
✅ View Reference Solution
ls_emp-id = 1. ls_emp-name = 'John'. WRITE: ls_emp-id, ls_emp-name.