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
Post a Comment