2004 May 21 7:45 AM
Can anyone tell me which is the way to interact with Excel, MS word as far as performance factor is concerned?
Thnx in advance
Balaji
2004 May 21 1:57 PM
I would suggest to take a look at 'Office integration' and 'OLE' nodes in transaction DWDM.
You can find examples there.
Incho
2004 Jun 17 10:30 PM
Hi!
In our project, we use OLE Automation. You can use OLE2 objects by means of the statements:
INCLUDE ole2incl.
...
DATA x TYPE ole2_object.
...
CREATE OBJECT x 'WORD.APPLICATION' .
SET PROPERTY OF x '<property_name>' = <value> .
GET PROPERTY OF x '<property_name>' = y .
CALL METHOD OF x '<method_name>' = z
EXPORTING #1 =...
#2 =...
...
FREE OBJECT x .
It will be very helpful to inspect code examples of SAP.
*--Serdar