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

Use

Use this method to add a control to a particular cell. An existing control in the same cell is not deleted. You set the visibility of the control using SET_VISIBLE.

NoteThe control that you want to insert must already exist at the same dialog box level (you can query this using the IS_ALIVE method).

Features

call method splitter_container->add_control

  exporting
    row = row
    column = column
    control = control

  importing
    result = result

  exceptions
    cntl_error = 1
    cntl_system_error = 2
    lifetime_error = 3.

Parameters

Description

Possible values

row

Line in which you want to insert the column

 

column

Column which you want to insert the column

 

control

Instance of the control you want to insert

 

result

Result code

 

 

 

Leaving content frame