‎2007 May 14 8:54 PM
Hi Guru' s
My requirment is to import vlaues form Excel file to the the multiple selection of the select options.
Thanks,
Jagan.
‎2007 May 14 8:57 PM
Hi Jagan,
If you want to preload the select-options from the file, then you can do this:
initialization.
call function 'GUI_UPLOAD'..."To upload the file into an internal table say, itab.
loop at itab.
s_opt-sign = 'I'.
s_opt-option = 'EQ'.
s_opt-low = itab-field1.
append s_opt.
clear s_opt.
endloop.
Regards,
Ravi
‎2007 May 14 9:00 PM
‎2007 May 14 9:06 PM
Just copy the column you need into the clipboard and then paste it into the select-option using the 'upload from clipboard' icon.
Rob
‎2007 May 14 9:15 PM
Hi Rob,
can we add custom icon or button like 'Import from Execl' and write our own functionality like the example given by Ravi .
Jagan.