‎2009 Nov 03 1:11 PM
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 ?
‎2009 Nov 03 1:16 PM
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.
‎2009 Nov 03 1:17 PM
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.
‎2009 Nov 03 1:22 PM
‎2009 Nov 03 1:23 PM
Probably you can unite all these tables into a single table and pass it to the FM