Open all | Close all
|
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.
|
| |
|
|
|