Entering content frameFunction documentationCONSTRUCTOR Locate the document in its SAP Library structure

Use

The constructor creates, initializes, and positions the control.

NoteThe constructor method is called automatically when you instantiate the class ( create object statement). You generally pass the parameters of the method in the create object statement.

Features

create object easy_splitter_container

  exporting
    link_dynnr = link_dynnr
    link_repid = link_repid
    metric = metric
    parent = parent
    orientation = orientation
    sash_position = sash_position
    with_border = with_border

  exceptions
    cntl_error = 1
    cntl_system_error = 2.

Parameters

Description

Possible values

link_dynnr

Number of the screen to which you want to attach the control

 

link_repid

Report ID: Program to which you want to attach the control

 

metric

Metric

easy_splitter_container->metric_default : Screen metric (default)

easy_splitter_container->metric_pixel : Pixels

easy_splitter_container->metric_mm : Millimeters

parent

Parent of the instance, that is, the container in which the control is to be displayed

 

orientation

Orientation of the splitter bar

easy_splitter_container->orientation_vertical : Vertical splitter bar

easy_splitter_container->orientation_horizontal : Horizontal splitter bar

sash_position

Position of the splitter bar

Percentage from left to right or top to bottom.

Default: 50

with_border

Setting for border

0: Without border

1: With border

 

Leaving content frame