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

outbound

Former Member
0 Likes
272

I want to download a file from sap financials to non sap format

In sap I get the file and after the file format is converted I have to keep the file in a path (in the local pc) the path is fixed and in that path for every execution depending upon the time and date file name is created in that fixed path.

I'm thinking of using GUI_DOWNLOAD but I'm not getting how to give the filename

Can anyone suggest me how to do.

Thanks in advance

Hema.

1 REPLY 1
Read only

Former Member
0 Likes
248

Hi,

Concatenate the date and time to file name..

Example

-


DATA: FILENAME TYPE STRING.

CONCATENATE 'C:\TEST' SY-DATUM SY-UZEIT '.TXT' INTO FILENAME.

*Call the FM GUI_DOWNLOAD with the file name in the variable FILENAME..

THanks,

Naren