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: 

Problem with toolbar too large

hermanoclaro
Participant
0 Kudos

Hi there.

I have lots of buttons on my gui toolbar and I need to add two more, but when I do they are created out of the limits of the window. I remember that is possible to create a scroll to see the buttons out of range, but don't know how to do. Somene could help me?

Thanks in advance.

-h

1 ACCEPTED SOLUTION

former_member223537
Active Contributor
0 Kudos

Hi,

You need to append a toggle button, & handle the event.

DATA fcode TYPE TABLE OF sy-ucomm.

APPEND 'CHANGE' TO fcode.

APPEND 'SAVE' TO fcode.

SET PF-STATUS 'STATUS_0100' EXCLUDING fcode.

WHEN 'TOGG'. " TOGGLE button

append another buttons in FCODE.

Best regards,

Prashant

2 REPLIES 2

former_member223537
Active Contributor
0 Kudos

Hi,

You need to append a toggle button, & handle the event.

DATA fcode TYPE TABLE OF sy-ucomm.

APPEND 'CHANGE' TO fcode.

APPEND 'SAVE' TO fcode.

SET PF-STATUS 'STATUS_0100' EXCLUDING fcode.

WHEN 'TOGG'. " TOGGLE button

append another buttons in FCODE.

Best regards,

Prashant

0 Kudos

Hi Prashant,

Thanks for your answer, but, there's no other way, like a function, method, etc. that could do this?

Thanks a lot.

-h