‎2009 Jun 03 1:25 PM
hai,
i want to place select-option for one field usinf functionmodule as import parameter.
plz tell me .
‎2009 Jun 03 1:31 PM
Hi,
Try creating a structure similar to TVARV and then use it in the tables parameter of the FM.
Regards,
Ankur Parab
‎2009 Jun 03 1:37 PM
Hi,
select option is nothing but creating range for an field.
so go to se11->create structure with z<field-name>
with fields..Sign(1),Option(2), low type <field name>, high type <field name>
and use the same structure in importing or exporting while refering the field..
Prabhu
‎2009 Jun 03 9:56 PM
hi,
Use two import parameters LOW and HIGH to get the functionality..
and make us of them..
Thanks and Regards,
KC
‎2009 Jun 04 5:50 AM
Hi.... declate TVARV staructure as import parameter to FM or create a structure with fieds like SIGN, OPTION, LOW, And HIGH and pass values to FM.
Regards,
KP.
‎2009 Jun 04 7:02 AM
you dont need to create any structure in se11. we have standard structure 'ETSELECT_OPTION' as same sturucture as select option. you can declare import parameter of the FM by using this struture ETSELECT_OPTION.
Regards,
Peranandam
‎2009 Jun 04 8:45 AM
Hi Suresh,
in se37 import parameters give the date range like this
erdat1 like vbak-erdat
erdat2 like vbak-erdat
SELECT erdat
vbeln
posnr
FROM vbak
INTO CORRESPONDING FIELDS OF TABLE it_final
WHERE erdat BETWEEN erdat1 AND erdat2.