Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

function group

Mohamed_Mukhtar
Active Contributor
0 Likes
763

hi ,

What is the use of function group

with regards

always learner

5 REPLIES 5
Read only

Former Member
0 Likes
742

Hello,

Please, read this [http://help.sap.com/saphelp_nw04/helpdata/en/9f/db992335c111d1829f0000e829fbfe/frameset.htm].

Regards,

Read only

Former Member
0 Likes
742

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

Read only

Former Member
0 Likes
742

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.

Read only

Former Member
0 Likes
742

The main purpose of function group is share the global data within these group of function modules..

Regards,

Dara.

Read only

Mohamed_Mukhtar
Active Contributor
0 Likes
742

thx