Entering content frame

Syntax documentation horizontal_split Locate the document in its SAP Library structure

Use this method to split a document into two sections, one above the other. The existing document becomes the topmost section. The method returns an object reference variable with the type cl_dd_area . You use its methods to design the bottom section of the document.

CALL METHOD valid_reference->horizontal_split
          EXPORTING split_area  = split_area
                    below_area  = below_area.

Parameter and Type

Opt.

Description

split_area
TYPE REF TO CL_DD_AREA

 

The area that you want to split. In the first instance, this will always be the whole document. If you subsequently want to split a particular area within the document, you must still call the method for the whole document, but specify the area that you want to divide in this parameter.

In a split operation, the existing document or area becomes the top section.

below_area
TYPE REF TO CL_DD_AREA

 

An object reference with type cl_dd_area . You use this to construct the newly-created bottom area.

 

 

Leaving content frame