How to perform 'Fetch All Rows' in ABAP.
* Task: Fetch All Rows
* Language: ABAP
FORM fetch_all_rows()
* Implementation for Fetch All Rows
DATA result = ...; * Initialize variable
* TODO: Implement core logic here
* Step 1: Prepare data
* Step 2: Process Fetch All Rows
WRITE("Done");
ENDFORM.