Show TOC

Setting Object AttributesLocate this document in the navigation structure

Use
        
<Objekteigenschaft> = <Wert>
         

<Objekteigenschaft> a name defined by the application while <Wert> represents the attribute of the variables or the value of the contants that is 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 make Excel visible, the call is as follows:

visible = 1

It is also possible to edit object properties that do not refer to the global object but to the subobject of the application. This object must first be created. Then the properties can also be edited there. The corresponding syntax is then:

        
<Objekt>.<Objekteigenschaft> = <Wert>
         

An example of this is in Object Methods Call.