Application Development 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: 

ALV is not involved to subschreen

Former Member
0 Kudos

Hi all

I have a screen 0100 that consists of 3 subscreens as you can see on the picture.

On the third subscreen, I inserted two ALV grid and as you can see, it looks very ugly.

I created alvs in the pbo from third subscreen with following code:

module status_0130 output.

   gcl_pbo_0130=>create_alv( ).
   gcl_pbo_0130=>display_alv( ).

endmodule.

and do not know what I am doing wrong?

The subscreens in the main screen look is divided as follows:

Thanks very much for help.




3 REPLIES 3

former_member289261
Active Contributor
0 Kudos

Hi,

In the method gcl_pbo_0130=>create_alv( ) the screen is split into 2.

Please check the screen width and height provided to split and change it to fit the complete area.

former_member197132
Participant
0 Kudos

use split container concept for the 3rd subscreen.

former_member809980
Participant
0 Kudos

Hi,

you can use SPLIT CONTAINER to meet your requirement.

refer the link.. it will clear your concepts and you will get what you are looking for

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50f1786c-a627-2e10-07b9-fefe54837...

thanks!!