Entering content frame

Background documentation IFrame Locate the document in its SAP Library structure

Caution

Do not this UI element any more.

With the portal you can integrate applications that are not based on the Web Dynpro programming model. UI elements are provided too embed help texts, for example, Explanation and the explanation property in a range of UI elements (for example, InputField, Button). The Office Integration Library is provided for embedding documents and the  Adobe Library is provided for PDF forms.

If you still want to use the UI element, note that when interactive, stateful applications, such as BSP or JSP applications, are embedded, these are always reloaded in connection with navigation steps after each server roundtrip. When IFrame is used no session handling is supported.

Note that Web Dynpro cannot guarantee accessibility to the content of an IFrame.

The UI element IFrame represents an area separated by a frame, which contains a separate browser page, within a view. This frame can be used to display external sources like HTML pages within a specific area of the user interface. In general, a vertical and horizontal scroll bar are activated to view the content of this UI element. You can scroll within this frame, as shown in the following graphic:

Example of the Display:
IFrame in a MatrixLayout with Background Shading

This graphic is explained in the accompanying text

Note

When the template is being designed the tool tip property is checked to guarantee Accessibilty.

 

Runtime Class

CL_WD_IFRAME

 

Properties in the View Designer

Name

Type

Initial Value

Bindable

ID

STRING

(automatic)

No

border

WDY_BOOLEAN

false

Yes

enabled

WDY_BOOLEAN

true

Yes

height

STRING

300

Yes

scrollingMode

WDUI_SCROLLING_MODE

auto

Yes

source

STRING

 

Yes

tooltip

Text

 

Yes

visible

WDUI_VISIBILITY

visible

Yes

width

STRING

300

Yes

Note

Further properties that can be inherited are defined in the associated higher-level class.  The associated interface elements are:

·         UIElement

·         ViewElement

Dynamic Programming

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

Dynamic Programming of Properties

View Designer Name

Runtime Name

Type

border

BORDER

WDY_BOOLEAN

enabled

ENABLED

WDY_BOOLEAN

height

HEIGHT

STRING

scrollingMode

SCROLLING_MODE

WDUI_SCROLLING_MODE

 scrollingMode: auto

CL_WD_IFRAME=>E_SCROLLING_MODE-AUTO

 scrollingMode: both

CL_WD_IFRAME=>E_SCROLLING_MODE-BOTH

 scrollingMode: none

CL_WD_IFRAME=>E_SCROLLING_MODE-NONE

source

SOURCE

STRING

tooltip

TOOLTIP

WDY_MD_TRANSLATABLE_TEXT

visible

VISIBLE

WDUI_VISIBILITY

 visible: none

CL_WD_IFRAME=>E_VISIBLE-NONE

 visible: visible

CL_WD_IFRAME=>E_VISIBLE-VISIBLE

width

WIDTH

STRING

Example

You can find examples in the system in the Web Dynpro application, WDR_TEST_UI_ELEMENTS.

 

 

 

Leaving content frame