sap - Passing data via OLE to existing Excel file - ABAP -


i'm trying export several tables excel file using ole.

right now, i'm developing hole file (merging cells, borders, shades, places, etc..).

but have empty file. possible use ole pass data right places of existing excel file?

thank you.

i've found answer. needed use this:

* start application   create object e_appl 'excel.application'.   set property of e_appl 'visible' = 1.  * open file   call method of e_appl 'workbooks' = e_work.    call method of e_work 'open'           exporting                #1 = p_file. 

thank you.


Comments

Popular posts from this blog

php - Dynamic url re-writing using htaccess -

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -