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

Types Does not Exist Error in Function Module creation

Former Member
0 Likes
1,684

Hi Guys

I am trying to replicate the functionality of the below program using a function module. However when I enter the following in the changing tab of the fn mod, I get error TYPE IT_VBRP does not exist.

Parameter name p_it_vbrp like it_vbrp

<removed by moderator>

Moderator message: please post only relevant code parts, your posts must contain less than 5000 characters to preserve readable formatting.

Edited by: Thomas Zloch on Sep 11, 2011 3:55 PM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
812

Hi

The reference type of a parameter of the interace of function module has to be defined in dictionary, if you need to use a particular type, you need to create an your own custom type pool or try to looking for a type defined like yours,

For example if you need a table based on vbrp, you can use the table type TAB_VBRP

Max

1 REPLY 1
Read only

Former Member
0 Likes
813

Hi

The reference type of a parameter of the interace of function module has to be defined in dictionary, if you need to use a particular type, you need to create an your own custom type pool or try to looking for a type defined like yours,

For example if you need a table based on vbrp, you can use the table type TAB_VBRP

Max