SAP GET PROPERTY - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for GET_PROPERTY

GET PROPERTY

ABAP Reference
ABAP Code Snippet


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

What does it do? Assigns the content of the attribute attr of an automation object ole, created using CREATE OBJECT ole, to the data object dobj.


ABAP Addition 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 objects rc.
EXPORTING p1 = f1 p2 = f2 ...
Transfers actual parameters f1, f2, ... to parameters p1, p2, ... of the attribute.

Return to menu