Hello all.
I have readed same documents about OLE Automation .
i know,first CREATE OBJECT obj class.then SET PROPERTY OF or CALL METHOD .
ex:
DATA EXCEL TYPE OLE2_OBJECT.
DATA WORKBOOK TYPE OLE2_OBJECT.
CREATE OBJECT EXCEL 'Excel.Application'.
CALL METHOD OF EXCEL 'WORKBOOKS' = WORKBOOK.
but how can i know the class name is 'Excel.Application'?
how can i know all propertys of a ole object.? mothods?