SAP Certified Development Associate – ABAP with SAP NetWeaver 7.50 — Question 3
In which of the following source code blocks can you define local data objects? (Choose three.)
Answer options
- A. Function module
- B. Subroutine
- C. PBO module
- D. LOAD-OF-PROGRAM
- E. Static method
Correct answer: A, B, C
Explanation
The correct answers are A, B, and C because local data objects can be defined within a Function module, Subroutine, or PBO module. In contrast, D (LOAD-OF-PROGRAM) generally does not support local data object definitions, and E (Static method) typically uses class-level data instead of local data objects.