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

Subscreen problem

Former Member
0 Likes
1,691

Hi guys,

I have a tabstrip control (only 1 tab) inside I have a subscreen with 5 blocks ( 5 frames).

My problem is that I only see 3 frames the others I can't see it . I think that the problem

is about the dimension of the subscreen so now I resize at max lenght. I don't resolve the problem.

Anybody has a suggestion about this?

Thanks a lot.

Best Regards.

Ana

7 REPLIES 7
Read only

Former Member
0 Likes
1,173

Hi,

Firstly you will have to increase the size of the tabstrip control,

and within that the subscreen area should also be resized .

activate the screen.

it should resolve your issue

it has worked for me......

Regards,

Siddarth

Read only

MarcinPciak
Active Contributor
0 Likes
1,173

Hi Ana,

Frames and standard controls are defined statically in screens, therefore your subscreen area must be of size the subscreen you are placing inside it. On the other hand, GUI controls like ALV, trees (generaly all GUI controls which are connected with screen via containers) are set dynamically in program, thus displaying scroll bars when they don't fit the subscreen area they are placed in.

That's why you must correct your statically defined controls with their size to fit the subscreen area they are displayed. For GUI cotrols this restriction is not applicable.

Regards

Marcin

Read only

Sandra_Rossi
Active Contributor
0 Likes
1,173

you have a strange problem, it should work without problem, maybe try to install latest sapgui, or look at sap notes.

I made a test by copying DEMO_DYNPRO_TABSTRIP_SERVER program, the subscreen control "SUB" in the dynpro 0100 has height 13. I changed the dynpro 0110 to height 25 + added content up to this 25th line, and when I run the program, I get a vertical scrollbar to scroll down to the 25th line.

Could you try the same test and tell us the result?

Read only

0 Likes
1,173

Hi Sandra Rossi,

I made the test in DEMO_DYNPRO_TABSTRIP_SERVER program. I added frames, buttons, ... into dynpro 0110 and I get a vertical scrollbar very well .The height of dynpro 0110 now is 25 so it's bigger than "SUB".

I can see all the frames and buttons. I don't know why my program looses the bottom frames in a subscreen.

Thanks a lot .

Read only

0 Likes
1,173

maybe you have a second subscreen (B) inside the one (A) in the tabstrip control ?

Check the "scrollable" attribute of B (normally A is automatically set to "scrollable" as it belongs to the tabstrip control, but check it too to be sure)

Read only

Former Member
0 Likes
1,173

When you have a subscreen inside a subscreen it has a dimensions so the information inside is limited.

Solution: I have to put buttons inside the principal subscreen to open other subscreens with the information.

Thanks for your answers.

Read only

0 Likes
1,173

> When you have a subscreen inside a subscreen it has a dimensions so the information inside is limited.

No, you're wrong, it is not limited as SAP will add scroll bars, EXCEPT if you don't check "Scrollable" field as I said earlier. But maybe you didn't code your tabstrip correctly (look at abap documentation to see how it works).