Code Pushdown Logic
Task
Replace classical ABAP loop-based logic with database-side aggregation using SQL.
Write Your ABAP Code
Loading...
✅ View Reference Solution
SELECT SUM( qty ) INTO lv_total FROM zsales WHERE qty > 100.
Replace classical ABAP loop-based logic with database-side aggregation using SQL.
SELECT SUM( qty ) INTO lv_total FROM zsales WHERE qty > 100.