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 Modules: maximum number of parameters ?

Former Member
0 Likes
1,466

Q: Is there a limit of maximum number of parameters existing, while calling a function module.

I didn't find a hint in the ABAP-Documentation.

We have a function module, with 120 parameters and this should be enlarged by about 25 new parameters.

Can this cause a problem ?

4 REPLIES 4
Read only

Former Member
0 Likes
980

Hello

No problem.

But I recommend to unite all parameter into structure and pass table into FM instead of enumerate all parameters.

It will simplify your code.

Read only

agnihotro_sinha2
Active Contributor
0 Likes
980

hi,

why do you want to go for such an approach?

instead create a Table Type in the Data dictionary and create fields in it. Populate this Table type in your program and pass it to the FM.

doesnt it sounds a neat way of development??

ags.

Read only

0 Likes
980

85 of these 120 parameters are already TABLES .

Read only

0 Likes
980

Probably you can unite all these tables into a single table and pass it to the FM