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: 

Calling function module

Former Member
0 Kudos

When I call my function I get a runtime error.

It says Type conflict calling functional module xxx

My module is active and but the error accurse when it calls the function

Thanks

6 REPLIES 6

Former Member
0 Kudos

Hi Johan,

There must be chance that the varibale you defined are not of the correct type. In that case only you get this error.

Regards,

Atish

Former Member
0 Kudos

Hi,

Please check whether the variables used in your calling statement has the same type as that of function module declaration.

Normally type conflict arises due to mismatch of types of variables in the calling statement.

Reward points if useful.

Thanks and Regards,

Litta.

Former Member
0 Kudos

Hi,

Check the declaration of the variables used in the FM in ur program.

Regards,

Anjali

Former Member
0 Kudos

The parameter you passed into that function module has a different data type as defined in the function module interface.

Former Member
0 Kudos

Hi Johan,

This may be caused due to the type mismatch.check the values you are passing are of correct type or else tell me the function name so that i can help you further.

Thanks

Lalit

0 Kudos

Thanks all,

It was because I was imporing som values that was not needed in the FM