Skip to content

ABAP Keyword Documentation →  ABAP - Quick Reference 

GET PROPERTY - Quick reference

Reference

Other versions: 7.31 | 7.40 | 7.54

Syntax


GET PROPERTY OF ole attr = dobj [NO FLUSH] [QUEUE-ONLY] 
                                [EXPORTING p1 = f1 p2 = f2 ...].

Effect

Assigns the content of the attribute attr of an automation object ole created using CREATE OBJECT ole to the data object dobj.

Additions

  • NO FLUSH
    Specifies that the attribute is applied on the presentation server only when the function module FLUSH is called or the screen is changed.
  • QUEUE-ONLY
    Specifies that, in the case of a flush, the return codes of the methods called using CALL METHOD OF in the automation queue are not written to the data objects rc.
  • EXPORTING p1 = f1 p2 = f2 ...
    Passes actual parameters f1, f2, ... to parameters p1, p2, ... of the attribute.