‎2008 May 06 6:52 PM
hi ,
What is the use of function group
with regards
always learner
‎2008 May 06 6:56 PM
Hello,
Please, read this [http://help.sap.com/saphelp_nw04/helpdata/en/9f/db992335c111d1829f0000e829fbfe/frameset.htm].
Regards,
‎2008 May 06 6:59 PM
generally we use the function groups for differentiating the modules, means that the hr function modules are develouped under the zhr group and the mm function modules are under the zmat function group..
regards,
venkat
‎2008 May 06 8:00 PM
Hiii,
Function groups are containers for function modules. You cannot execute a function group. When you call an function module, the system loads the whole of its function group into the internal session of the calling program (if it has not already been loaded).
All of the function modules in a function group can access the global data of the group. For this reason, you should place all function modules that use the same data in a single function group. For example, if you have a set of function modules that all use the same internal table, you could place them in a function group containing the table definition in its global data.
Like executable programs (type 1) and module pools (type M), function groups can contain screens, selection screens, and lists. User input is processed either in dialog modules or in the corresponding event blocks in the main program of the function group. There are special include programs in which you can write this code. In this way, you can use function groups to encapsulate single screens or screen sequences.
Also u can have more info from the below link.
http://help.sap.com/saphelp_46c/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm
Pls reward if useful.
Thanks
Sirisha.
‎2008 May 06 8:11 PM
The main purpose of function group is share the global data within these group of function modules..
Regards,
Dara.
‎2008 Jul 25 4:17 AM