‎2008 Dec 03 10:12 AM
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
‎2008 Dec 03 10:22 AM
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
‎2008 Dec 03 10:14 AM
Hi Steffen ,
Regarding Which FM which parmeters are you speaking?
Regards
Sas
‎2008 Dec 03 10:20 AM
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...
‎2008 Dec 03 10:22 AM
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
‎2008 Dec 03 10:32 AM
@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
‎2008 Dec 03 10:31 AM