ABAP Keyword Documentation → ABAP - Short Reference
GET PROPERTY - Short 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
Has the effect that the attribute is adopted by the presentation server only when the function module FLUSH is called or the screen is changed. -
QUEUE-ONLY
Has the effect that, in the case of a flush, the return values of the methods called withCALL METHOD OF in the automatio queue are not written to the data objectsrc
. -
EXPORTING p1 = f1 p2 = f2 ...
Transfers actual parametersf1
,f2
, ... to parametersp1
,p2
, ... of the attribute.