
Layout
Use
You determine the presentation logic for your BSP using server-side scripting in the layout.
To ensure clean development, layout and presentation must be separated from processing logic. Therefore, scripting for the static details of a page is part of layout processing, while the dynamic processing steps are set in the different event handlers (see
Event Handlers).The layout can also be regarded as an internal event handler for the presentation.

You can create your own
Functions
You can access the following objects in the implementation:
|
Object |
Reference Type |
Description |
|
APPLICATION |
type ref to application class |
Application class refers to the individual application or application class specified in the BSP application. If there is no application class in the BSP application, this means that the object application is not available. |
|
RUNTIME |
type ref to IF_BSP_RUNTIME |
The runtime object is defined in interface IF_BSP_RUNTIME . |
|
REQUEST |
type ref to IF_HTTP_REQUEST |
The request object is defined in interface IF_HTTP_REQUEST. |
|
RESPONSE |
type ref to IF_HTTP_RESPONSE |
The response object is defined in interface IF_HTTP_RESPONSE. |
|
PAGE |
type ref to IF_BSP_PAGE |
Page object is defined in interface IF_BSP_PAGE. |
|
PAGE_CONTEXT |
type ref to IF_BSP_PAGE_CONTEXT |
Page context object is defined in interface IF_BSP_PAGE_CONTEXT. |
Example
BSP only with Layout