‎2008 Nov 07 8:45 AM
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
‎2008 Nov 07 8:48 AM
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.
‎2008 Nov 07 8:48 AM
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.
‎2008 Nov 07 9:08 AM
NO. is it possible to create a functional module with user defined structures ?
‎2008 Nov 07 8:52 AM
You have to reference a disctionary type or a generic type.
For example to pass a character 12 field reference the type CHAR12.
Darren