Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ALV OOPS Split container

Former Member
0 Likes
3,216

Hi,

Can any one please tell me about split container in detail...

Thanks,

Gaurav J.

3 REPLIES 3
Read only

Former Member
0 Likes
1,095

hi go thru these sites,

http://help.sap.com/saphelp_nw04/helpdata/en/2a/755b94ca5911d299af5c9604c10e27/content.htm

http://help.sap.com/saphelp_erp2004/helpdata/en/22/a3f5ecd2fe11d2b467006094192fe3/content.htm

http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCCIDOCK/BCCIDOCK.pdf

Some of the commonly used containers are custom container,splitter container,docking container.Some of the commonly used controls are trees,ALV Grids,Text Editors,HTML Controls,Picture Control.

CL_GUI_DIALOGBOX_CONTAINER .:This is used to display the dialog box container.It is displayed in a movable modelless dialog box which can have a title.

Chk demo program:RSDEMO_DIALOGBOX_CONTROL

CL_GUI_CUSTOM_CONTAINER :SAP Custom Container to build a control into an area on a screen or subscreen. You define the area occupied by the control in the Screen Painter. The default size of the control that you place in the Custom Container is the same as that of the container itself.

Chk demo program:RSDEMO_CUSTOM_CONTROL

CL_GUI_ALV_GRID:This is a control.The ALV grid control tool allows you to display and print non-hierarchial lists in a standardized format.The list data is displayed as a table on the screen.

Chk demo program:BCALV*

For ALV: http://www.sapdevelopment.co.uk/reporting/alvhome.htm

You will get sample programs for all the containers and the controls on this link:

http://www.geocities.com/victorav15/sapr3/abap_ood.html

You can use the class CL_GUI_SPLITTER_CONTAINER. Pass the docking container reference as the PARENT for the constructor method of the splitter class.

For e.g.

CREATE OBJECT <ref_to_splitter>

EXPORTING

parent = <ref_to_dock>

rows = <r>

columns = <c>.

You may get any number of splitter containers based on the rows & cols specified

reward points if useful,

Read only

Former Member
0 Likes
1,095

Hi,

For code check the simple standard DEMO program

RSDEMO_EASY_SPLITTER_CONTROL

For demo progrram see tcode DWDM

Read only

Former Member
0 Likes
1,095

Hi,

Check this link.

<http://www.erpgenie.com/abap/controls/splitter.htm>

Hope this will help

Regards

Shibin