cancel
Showing results for 
Search instead for 
Did you mean: 

functional Module

Former Member
0 Kudos

HI gurus,

Anybody can give brief description about FUNCTIONAL MODULE?

regards,

ABHI

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi ,

Function modules is one of the modularization techniques,which means you define these function modules in SE37 and u can use this function modules in ABAP reports,

for example i have function module in which i will allow two input vales and gives a output value.

these function modules can be called from anywhere.

Please let me know if you need any more details.

Thanks and regards,

Rajeshwar.

Answers (5)

Answers (5)

sumit_joshi2
Participant
0 Kudos

Execute transaction SE37 and create a function group.

Give the desired function group name and a short text.

Once the function group is created type the desired function module name.

And click on create.

Enter the function group name created earlier and the desired short text for function module.

and click on save.

Save the function module as a $tmp object.

Now a screen will be presented to you, here you need to enter the

import and export parameters. These are nothing but the variables that you

would be passing to the function module and the returned values from the

function module.

There is options for the returned values from the function module, type the code in the source code area.

Active the function module and the related code.

Call the above created function module from an ABAP Report.

Type the code shown below. And run the report.

sarthak_mohantysd
Active Contributor
0 Kudos

Hello,

Kindly use the search function of the SDN forum and you will get the information regarding "Function Module"

Check this out --> https://forums.sdn.sap.com/click.jspa?searchID=27190939&messageID=3229111

Regards,

Sarthak

Former Member
0 Kudos
Former Member
0 Kudos

Hi,

Function modules are procedures that are defined in special ABAP programs only, so-called function groups, but can be called from all ABAP programs. Function groups act as containers for function modules that logically belong together

thanks.

Former Member
0 Kudos

my understanding is that FM is a piece of program which would return a set of values to the main program. This can also be used when we data realtime.

Hope this helps.

Regards,

Mani