‎2007 Jan 31 12:49 AM
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.
‎2007 Jan 31 12:55 AM
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