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

Problem with toolbar too large

hermanoclaro
Participant
0 Likes
571

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
Read only

Former Member
0 Likes
537

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
Read only

Former Member
0 Likes
538

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

Read only

0 Likes
535

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