cancel
Showing results for 
Search instead for 
Did you mean: 

Type Conflict Error

Former Member
0 Kudos

Hi Experts

I Created One FM Called ZIN_INVOICE . . . .

When I AM Calling That In WEB DYNPRO Code Wizard It Throwing ERROR

Type conflict when calling a function module error web dynpro abap

Can Any One Help

BY

Srinivasan.r

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello!

You have to provide the same vars types when you call the FM.

Parameter: p1 of type p_pernr for example, needs a var of the type p_pernr you cant use STRING.

Try to find out the parameter that dont have the same type when you call it, than when you define it in your FM.

Bye

Answers (1)

Answers (1)

Former Member
0 Kudos

make sure that parameter passed in FM are of same type as defined in function module. open the FM in SE37 and on tab importing paramener and exporting parameter, check the type given here is same as what you used to define imp/exp variables.

Thanks