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

Date field

Former Member
0 Likes
526

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
501

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.

4 REPLIES 4
Read only

Former Member
0 Likes
501

subject ne body.

I am confused.

Read only

0 Likes
501

parameters: p_date type sy-datum default v_date.

v_date will come from Function module...

clear??

Read only

Former Member
0 Likes
502

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.

Read only

0 Likes
501

thankyou so much....