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