Show TOC Start of Content Area

Background documentation AbstractGenericActiveComponent  Locate the document in its SAP Library structure

AbstractGenericActiveComponent is the abstract base UI element for ActiveX and Flash Island. AbstractGenericActiveComponent can be modified to fufill certain functions for both active UI elements. The three aggregations – Properties, DataSources, and Events – can be used to describe the concrete entities of a specific UI element.

 

Runtime Class

CL_WD_ABSTR_GAC

 

Properties in the View Designer

Name

Type

Initial Value

Bindable

ID

STRING

(automatic)

No

enabled

WDY_BOOLEAN

true

Yes

height

STRING

 

Yes

tooltip

Translatable text

 

Yes

visible

WDUI_VISIBILITY

visible

Yes

width

STRING

 

Yes

 

Aggregations in the View Designer

Name

Cardinality

Type

EVENTS

0..n

GACEvent

PROPERTIES

0..n

GACProperty

Note

Other properties that can be inherited are defined in the associated higher-level classes. The associated UI element is:

      ViewElement

Dynamic Programming

For dynamic programming, the same properties, events, and aggregations as in the View Designer are available. Bear in mind the different spellings.

Dynamic Programming of Properties

View Designer Name

Runtime Name

Type

enabled

ENABLED

WDY_BOOLEAN

height

HEIGHT

STRING

tooltip

TOOLTIP

WDY_MD_TRANSLATABLE_TEXT

visible

VISIBLE

WDUI_VISIBILITY

visible: none

CL_WD_ABSTR_GAC=>E_VISIBLE-NONE

visible: visible

CL_WD_ABSTR_GAC=>E_VISIBLE-VISIBLE

width

WIDTH

STRING

 

Dynamic Programming of Aggregations

View Designer Name

Runtime Name

Cardinality

EVENTS

EVENTS

0..n

PROPERTIES

PROPERTIES

0..n

 

 

End of Content Area