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

Regarding FM

Former Member
0 Likes
637

Hi All,

I have Lockbox and date as parameters on selection screen,

based on the values entered they are calling Custom FM passing these values

CALL FUNCTION FM

EXPORTING

p_desti = p_desti

p_orign = p_orign

p_lockb = p_lockb<---

p_date = p_date<---

p_batn = p_batn

IMPORTING

p_kukey = g_kukey

e_batn = p_batn

TABLES

t_febko = tb_febko.

Now my requirement is to change these parameter values to select-options.My question is it possible to pass a select-option(multivalues) to the FM at a time .Is there any other way to proceed.

Points will b rewarded for helpful answers.

Thanks & Regads,

Padmasri.

Hi All,

I have Lockbox and date as parameters on selection screen,

based on the values entered they are calling Custom FM passing these values

CALL FUNCTION FM

EXPORTING

p_desti = p_desti

p_orign = p_orign

p_lockb = p_lockb<---

p_date = p_date<---

p_batn = p_batn

IMPORTING

p_kukey = g_kukey

e_batn = p_batn

TABLES

t_febko = tb_febko.

Now my requirement is to change these parameter values to select-options.My question is it possible to pass a select-option(multivalues) to the FM at a time .Is there any other way to proceed.

Points will b rewarded for helpful answers.

Thanks & Regads,

Padmasri.

4 REPLIES 4
Read only

manubhutani
Active Contributor
0 Likes
614

Hi

u can pass it as a work area

in FM importing parameter

variable shud be of type ur range

low high sign etc (4 values)

then use low and high

to find the range in FM

Please reward points

Read only

0 Likes
614

Hi Manu,

The FM has define its import parameters just as normal parameters(like for date define as feblbx-frdat)

so they are in compatible..is there any other way to proceed

Read only

former_member188827
Active Contributor
0 Likes
614

insted of using exporting addition, specify the parameters in Tables addition.

pass ur select-options table to FM and evaluate sign and interval in FM.

select-options:seltab for ...

pass this seltab to FM.

plz reward points if this helps

Read only

Former Member
0 Likes
614

hi check this...

regards,

venkat