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 module

Former Member
0 Likes
342

what is function module?

can anybody send me sample program for function module?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
310

Function modules are procedures that are defined in function groups (special ABAP programs with type F) and can be called from any ABAP program. Function groups act as containers for function modules that logically belong together,Function modules allow you to encapsulate and reuse global functions in the R/3 System. They are stored in a central library,Unlike subroutines, you do not define function modules in the source code of your program.

3 types.

1)normal function module

2)remote function module

Difference between FM and subroutines

3)update function module

2 REPLIES 2
Read only

Former Member
0 Likes
311

Function modules are procedures that are defined in function groups (special ABAP programs with type F) and can be called from any ABAP program. Function groups act as containers for function modules that logically belong together,Function modules allow you to encapsulate and reuse global functions in the R/3 System. They are stored in a central library,Unlike subroutines, you do not define function modules in the source code of your program.

3 types.

1)normal function module

2)remote function module

Difference between FM and subroutines

3)update function module

Read only

Former Member