ABAP Keyword Documentation → ABAP - Short Reference
CALL METHOD - OLE - Short Reference
Other versions: 7.31 | 7.40 | 7.54
Syntax
CALL METHOD OF ole meth [= rc]
[EXPORTING p1 = f1 p2 = f2 ...]
[NO FLUSH] [QUEUE-ONLY].
Effect
Calls a method meth
of an
automation object
ole created with CREATE OBJECT ole
, where the return value can be stored in a variable rc
.
Additions
-
EXPORTING p1 = f1 p2 = f2 ...
Passes actual parameterf1
,f2
, ... to input parameterp1
p2
, ... -
NO FLUSH
Has the effect that the method call is passed to the presentation layer. only when the function module FLUSH is called or the screen changes. -
QUEUE-ONLY
Has the effect that for a flush the return values of the called methods of the automation queue are not written into therc
data objects.