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

passing user defined structures in functional module parameters ?

Former Member
0 Likes
636

is it possible to pass an user defined structures or internal tables in any of functional module parameters like import parameters export parameters or tables? if possible how to do it ?

i want to pass a variable like p_name of type c and length 12 in import parameters of a fnl module. how to do it? is it possible

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
571

Hello,

We cannot pass it please check the FM parameters datatype declare one variable of the that parameter type and move your parameter type value to FM parameter type variable and pass the value to FM.

3 REPLIES 3
Read only

Former Member
0 Likes
572

Hello,

We cannot pass it please check the FM parameters datatype declare one variable of the that parameter type and move your parameter type value to FM parameter type variable and pass the value to FM.

Read only

0 Likes
571

NO. is it possible to create a functional module with user defined structures ?

Read only

Former Member
0 Likes
571

You have to reference a disctionary type or a generic type.

For example to pass a character 12 field reference the type CHAR12.

Darren