Open all | Close all

Getting the LATEST information!

To ensure you are getting the latest information please vist this page on the new domain for SAP Development


Other statements for OLE processing

* Save Excel speadsheet to particular filename
CALL METHOD OF sheet 'SaveAs'
                EXPORTING #1 = 'c:\temp\exceldoc1.xls'     "filename
                          #2 = 1.                          "fileFormat

* Save Excel document
CALL METHOD OF sheet 'SAVE'.

* Quits out of Excel document
CALL METHOD OF sheet 'QUIT'.
   
*  Closes visible Excel window, data is lost if not saved
SET PROPERTY OF application 'visible' = 0.