‎2010 Sep 03 12:26 PM
Hi all,
I have a parameter where i need to give a default value as a variable...
the variable shud come from Function module....
where should i declare this fm??? please let me know....
Moderator message: please use more descriptive subject lines from now on.
Edited by: Thomas Zloch on Sep 3, 2010 1:51 PM
‎2010 Sep 03 12:31 PM
Hi
First declare the varible of FM export parmater.
In program,in event initilization. call FM and store the value in variable.
Call Fm in Initialization event and pass the variable from FM to the Parameter or select-option.
P_paramaeter = FM-variable
This will solve the matter.
Regards,
Raghu.
‎2010 Sep 03 12:30 PM
‎2010 Sep 03 12:31 PM
parameters: p_date type sy-datum default v_date.
v_date will come from Function module...
clear??
‎2010 Sep 03 12:31 PM
Hi
First declare the varible of FM export parmater.
In program,in event initilization. call FM and store the value in variable.
Call Fm in Initialization event and pass the variable from FM to the Parameter or select-option.
P_paramaeter = FM-variable
This will solve the matter.
Regards,
Raghu.
‎2010 Sep 03 12:33 PM