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

Save EXCEL file

Former Member
0 Likes
1,792

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,200

hi,

go through the following link..

links:[;

[;

[;

[/message/758567#758567 [original link is broken]

]

hope this help you

Regards

Ritesh J

5 REPLIES 5
Read only

Former Member
0 Likes
1,200

hi,

Refer this link...[Download to excel using OLE|http://translate.google.com/translate?hl=en&sl=ru&u=http://www.sapnet.ru/]

Read only

Former Member
0 Likes
1,201

hi,

go through the following link..

links:[;

[;

[;

[/message/758567#758567 [original link is broken]

]

hope this help you

Regards

Ritesh J

Read only

0 Likes
1,200

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...

Read only

0 Likes
1,012

what itab should i pass in gui_download as i have pasted my data into a worksheet

Read only

0 Likes
909

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.