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

container

Former Member
0 Likes
565

hi

what is meant by container

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
535

Hi,

see transaction DWDM ur point wiil clear.

If you have a single control (like the ALV tree) then you could use either a normal container (CL_GUI_CONTAINER or CL_GUI_CUSTOM_CONTAINER) or, alternatively, a docking container (CL_GUI_DOCKING_CONTAINER) if you want to attach the control at specific parts of the dynpro.

What I do not understand is your question concerning the field catalog. This has nothing to do with the container but has to be imported into the corresponding "functional" control (e.g. ALV grid control).

If you have more than one control that you want to display side by side then you need a splitter container (CL_GUI_SPLITTER_CONTAINER).

<b>Reward points</b>

Regards

4 REPLIES 4
Read only

Former Member
0 Likes
536

Hi,

see transaction DWDM ur point wiil clear.

If you have a single control (like the ALV tree) then you could use either a normal container (CL_GUI_CONTAINER or CL_GUI_CUSTOM_CONTAINER) or, alternatively, a docking container (CL_GUI_DOCKING_CONTAINER) if you want to attach the control at specific parts of the dynpro.

What I do not understand is your question concerning the field catalog. This has nothing to do with the container but has to be imported into the corresponding "functional" control (e.g. ALV grid control).

If you have more than one control that you want to display side by side then you need a splitter container (CL_GUI_SPLITTER_CONTAINER).

<b>Reward points</b>

Regards

Read only

Former Member
0 Likes
535

Hi,

plz go through the following links....

go through these weblogs ,hope these ll give you some idea to solve your problem

/people/shireesh.mitragotri/blog/2006/12/19/building-robust-applications-through-sub-workflows

/people/ravishankar.rajan/blog/2006/12/26/agent-determination-in-workflow-using-custom-table

***do reward if usefull

vijay

Read only

Former Member
0 Likes
535

Hello,

I used these following codes for bringing a picture to my module pool screen.

Think it will help you.

Rakesh


DATA:  container     TYPE REF TO cl_gui_custom_container   .

*Creating the custom container
      CREATE OBJECT container
                    EXPORTING container_name = 'CUSTOM'.

* create the picture control
      CREATE OBJECT picture
                    EXPORTING parent = container.

Read only

Former Member
0 Likes
535

Hi,

The "custom control" is actually a container for a control, which allows the screen framework to support resizing and compression of controls.

see this link for more help.

http://help.sap.com/saphelp_erp2004/helpdata/en/64/9e7759068011d294f000a0c94260a5/content.htm

<b>reward points if helpful.</b>

rgds,

bharat.