Application Development 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: 

Execution of a Function module ?

Former Member
0 Kudos

Hi,

Could you please tell me how to execute a custom function module in which the import parameters are a couple of tables which has lot of fields. Do i need to give entries in all of the fields to execute or to debug the Function Module..??

Thanks in Advance.. !!

1 ACCEPTED SOLUTION

Former Member
0 Kudos

The mandatory fields u need to fill in function module

6 REPLIES 6

Former Member
0 Kudos

The mandatory fields u need to fill in function module

Former Member
0 Kudos

Hi

To debug a function module just place a break point in source code

Former Member
0 Kudos

No.

just pass the two table names.

Former Member
0 Kudos

Hi,

To call function module from program

slect the pattern button on APPlication toolbar of ABAP editor enter your FM name.

Regarding parameters...

You have to pass all mandatory field values of FM.

To check whether mandatory or not

GOTO tcode SE37 enter Fm name press display

import parametres--->check call OPTION if check means Mandatory else. not.

Don't forget to reward if useful....

former_member404244
Active Contributor
0 Kudos

Hi,

u need to fill the mandatory fieldsin function module.in se37 specify the function module name and press on excute button..fill the mandatory fields,now in the application tool bar u cn see the DEBUGGING push button,click on it it will take u to the debug mode..

Regards,

Nagaraj

former_member567553
Participant
0 Kudos

Executing the custom FM is basically the same as executing a standard FM.

Pass the required values and your good to go.