‎2007 Jun 25 3:33 PM
I was told that since, we want to run the report on the job scheduler in the background, we can't use this function 'EXCEL_OLE_STANDARD_DAT' ,because it'll run on the presentation layer. Is there any other function module which does the same function
plz help urgent.......
‎2007 Jun 25 3:36 PM
‎2007 Jun 25 3:36 PM
‎2007 Jun 25 3:43 PM
Use Below Syntax to download at UNIX Layer
Download internal table to Application server file(Unix)
DATA: e_file like rlgrap-filename value '/usr/sap/tmp/file.txt'.
open dataset e_file for output in text mode.
lOOP AT it_datatab......
transfer it_datatab to e_file.
ENDLOOP.
close dataset e_file.
Thanks
Seshu