SAP SET PROPERTY - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for SET_PROPERTY

SET PROPERTY - OLE

ABAP Reference
ABAP Code Snippet


ABAP Syntax SET PROPERTY OF ole attr = dobj [NO FLUSH]

[EXPORTING p1 = f1 p2 = f2 ...].
ABAP Code Snippet

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

ABAP Addition NO FLUSH
Has the effect that the attribute is not transferred until the function module FLUSH is called, or until a change of screen layout is transferred to the presentation layer.
EXPORTING p1 = f1 p2 = f2 ...
Transfers actual parameters f1, f2, ... to the parameters p1, p2, ... of the attribute.

Return to menu