ABAP Keyword Documentation → ABAP - Quick Reference
GET PROPERTY - Quick 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 objectsrc
. -
EXPORTING p1 = f1 p2 = f2 ...
Passes actual parametersf1
,f2
, ... to parametersp1
,p2
, ... of the attribute.