Skip to content

ABAP Keyword Documentation →  ABAP - Quick Reference 

CALL METHOD - OLE - Quick reference

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 using CREATE OBJECT ole. The the return code can be saved in a variable rc.

Additions

  • EXPORTING p1 = f1 p2 = f2 ...
    Passes actual parameters f1, f2, ... to input parameters p1 p2, ...
  • NO FLUSH
    Dictates that the method call is passed to the presentation layer only when the function module FLUSH is called or the screen changes.
  • QUEUE-ONLY
    Dictates that, in the case of flushes, the return codes of the called methods of the automation queue are not written to the data objects rc.