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

problem in using 'EXCEL_OLE_STANDARD_DAT'

Former Member
0 Likes
458

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

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
385

You will need to write your file to the application server layer if running in the background. No other function module which uses the frontend will help.

Regards,

Rich Heilman

2 REPLIES 2
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
386

You will need to write your file to the application server layer if running in the background. No other function module which uses the frontend will help.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
385

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