Entering content frameSetting Object Attributes Locate the document in its SAP Library structure

Syntax:

<ObjectAttribute> = <Value>

<ObjectAttribute> is a name defined by the application, whereas <Value> represents the occurrence of the variables or the value of the constants transferred by the SAP System.

Example

To display a spreadsheet in Excel, you need to mark Excel as visible. To do this, the object "Excel.Application" provides the attribute "Visible". To display Excel, the call is as follows:

visible = 1

You can also edit object attributes that do not refer to the global object but to a sub-object of the application. First create this object, then you can edit the attributes. The corresponding syntax is then:

Syntax:

<Object>.<ObjectAttribute> = <Value>

An example can be found in Calling Object Methods.

Leaving content frame