InterviewSolution
| 1. |
What Is A Function Group? |
|
Answer» A function group is a COLLECTION of logically related modules that share global data with each other. All the modules in the group are included in the same main PROGRAM. When an ABAP/4 program contains a CALL FUNCTION STATEMENT, the system LOADS the entire function group in with the program CODE at runtime. Every function module belongs to a function group. A function group is a collection of logically related modules that share global data with each other. All the modules in the group are included in the same main program. When an ABAP/4 program contains a CALL FUNCTION statement, the system loads the entire function group in with the program code at runtime. Every function module belongs to a function group. |
|