SAP CALL METHOD OF OLE - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for CALL_OLE_METHOD

CALL METHOD - OLE

ABAP Reference
ABAP Code Snippet


ABAP Syntax CALL METHOD OF ole meth [= rc]

[EXPORTING p1 = f1 p2 = f2 ...]
[NO FLUSH] [QUEUE-ONLY].
ABAP Code Snippet

What does it do? 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.

ABAP Addition EXPORTING p1 = f1 p2 = f2 ...
Passes actual parameter f1, f2, ... to input parameter p1 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 the rc data objects.


Return to menu