cancel
Showing results for 
Search instead for 
Did you mean: 

Function Module

Former Member
0 Kudos

What is function module, Explain me

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Function modules are procedures that are defined in function groups (special ABAP programs with type F) and can be called from any ABAP program. All functions can be found at transaction code 'SE37'.

Function modules allow you to encapsulate and reuse global functions in the SAP System. They are managed in a central function library. The SAP System contains several predefined functions modules that can be called from any ABAP program. Function modules also play an important role during updating and in interaction between different SAP systems, or between SAP systems and remote systems through remote communications.

you do not define function modules in the source code of your program. Instead, you use the Function Builder. The actual ABAP interface definition remains hidden from the programmer. You can define the input parameters of a function module as optional. You can also assign default values to them. Function modules also support exception handling. This allows you to catch certain errors while the function module is running.

For Creating a Function module ref link

http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm

Edited by: ch pavan on Mar 29, 2010 5:17 PM

Answers (0)