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

Function or method to get import parameters for function modules

former_member183924
Active Participant
1,660

Hi Experts,

I couldn't find a function or method to get the import parameters for a function module.

Did anybody know it?

Thanks, regards,

Steffen

1 ACCEPTED SOLUTION
Read only

ThomasZloch
Active Contributor
835

Try /SDF/GEN_FUNCS_FUNC_INFO_GET. If this is not part of your installation, then directly select from table FUPARAREF.

Thomas

P.S. method CL_FB_PARAMETER_DB->READ might work as well

5 REPLIES 5
Read only

Former Member
0 Likes
835

Hi Steffen ,

Regarding Which FM which parmeters are you speaking?

Regards

Sas

Read only

Former Member
0 Likes
835

Hi,

Use changing in perform.


    perform data_check changing w_field.

   form data_check changing w_field1.
      * use your FMOD here
      * pass the value from funmod to w_field.
   endform.

Thanks & Regards,

Krishna...

Read only

ThomasZloch
Active Contributor
836

Try /SDF/GEN_FUNCS_FUNC_INFO_GET. If this is not part of your installation, then directly select from table FUPARAREF.

Thomas

P.S. method CL_FB_PARAMETER_DB->READ might work as well

Read only

0 Likes
835

@SAS: it's an Z* function module and I want to implement a logic regarding on the importparameters dynamicly.

@Thomas: Yes this FM is implemented in our system and it works great. Thanks!

regards

Steffen

Read only

RaymondGiuseppi
Active Contributor
0 Likes
835

Did you search through Function Group SEUF ?

Regards