‎2009 Jan 09 9:43 AM
Hello,
I have created using OLE2 an EXCEL file.
Now I would like to save it at a certain path...how do I do this?
Thank you.
‎2009 Jan 09 9:50 AM
‎2009 Jan 09 9:48 AM
hi,
Refer this link...[Download to excel using OLE|http://translate.google.com/translate?hl=en&sl=ru&u=http://www.sapnet.ru/]
‎2009 Jan 09 9:50 AM
‎2009 Jan 09 9:59 AM
hi,
************ F4 HELP FOR FOLDER SELECTION **********
DATA: wf_file_string TYPE string,
cl_guid TYPE REF TO cl_gui_frontend_services.
DATA :wf_path LIKE rlgrap-filename.
CLEAR : wf_file_string.
CREATE OBJECT cl_guid TYPE cl_gui_frontend_services.
fetch the path from user
CALL METHOD cl_guid->directory_browse
EXPORTING window_title = '/wateva name u give'
CHANGING selected_folder = wf_file_string.
CALL METHOD cl_gui_cfw=>flush.
IF wf_file_string IS INITIAL.
*Directory selection has been cancelled.
EXIT.
ENDIF.
wf_path = 'NTA.XLS'.
concatenate the path and file name to download
CONCATENATE wf_file_string '\' wf_path INTO wf_file_string.
then using gui download dowmload the file..
ps: if further help required do ask...
‎2025 Jun 18 8:26 AM - edited ‎2025 Jun 18 8:27 AM
what itab should i pass in gui_download as i have pasted my data into a worksheet
‎2025 Jun 20 5:31 AM
You are posting a reply / question to a thread which is more than 16 years old, already marked as solved and to a member who is no longer active at this community ("Former Member"). Please open a new thread with your question, with some more details and maybe a bit of code.