SAP CREATE OBJECT OLE - Reference ABAP Statements

Get Example source ABAP code based on a different SAP table
  


Standard SAP Help for CREATE_OLE_OBJECT

CREATE OBJECT - OLE

ABAP Reference
ABAP Code Snippet


ABAP Syntax CREATE OBJECT ole class [NO FLUSH] [QUEUE-ONLY].

ABAP Code Snippet

What does it do? : Creates an ole OLE automation object of the class automation class, where ole must have the ole2_object type from the OLE2 type group and class specifies the name of the class.

ABAP Addition NO FLUSH
Has the effect that the request to create an object is not passed until the FLUSH function module is called or when the screen changes to the current presentation server.
QUEUE-ONLY
Has the effect that with a flush, the return values of the methods of the automation queue that are called with CALL METHOD OF are not written to the rc data objects.


Return to menu