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

switch button like left side se80

Former Member
0 Likes
906

Hi, do someone know what kind of buttons are included on the left side of se80 on the top?

there are switchbuttons like "repository browser", "tag browser" etc.

Do someone know how to handle this in a splitter container?

6 REPLIES 6
Read only

Former Member
0 Likes
780

Muhammet,

you can control what need to be displayed on the left side by going to se80-utilities-settings-workbench(General)

Thanks

Bala Duvvuri

Read only

Former Member
0 Likes
780

Hi Muhameet,

Kindly check this link

[Buttons |]

Here based on the sel screen parameter, buttons are generated automatically.....

Read only

0 Likes
780

Sorry dat was a wrong link...

The correct one is [ Buttons |]

Cheers,

Jose.

Read only

uwe_schieferstein
Active Contributor
0 Likes
780

Hello Muhammet

I cannot tell you for sure but I assume that class CL_GUI_TOOLBAR is working behind the scene of transaction SE80. For a sample report have a look at SAPTOOLBAR_IN_SPLITTER.

Regards

Uwe

Read only

Former Member
0 Likes
780

Now I have create my toolbar in my splitter container,


PERFORM fill_data_table
  USING:
  'FC2' '@00@' cntb_btype_button  text-001
  'text-001',
  'FC3' '@5B@' cntb_btype_button  'text-001'
  'text-001',
  'FC4' '@5C@' cntb_btype_button  'text-001'
  'text-001',
  'FC5' '@5D@' cntb_btype_button  'text-001'
  'text-001',
  'FC6' '@12@' cntb_btype_button  'text-001'
  'text-001'.

CALL METHOD mytoolbar->add_button_group
  EXPORTING
    data_table = buttongroup.


FORM fill_data_table
         USING
               fcode  TYPE ui_func
               icon   TYPE iconname
               type   TYPE tb_btype
               text   TYPE text40
               tip    TYPE iconquick.

  CALL METHOD mytoolbar->fill_buttons_data_table
    EXPORTING
      fcode      = fcode
      icon       = icon
      butn_type  = type
      text       = text
      quickinfo  = tip
    CHANGING
      data_table = buttongroup.

ENDFORM.                    " FILL_DATA_TABLE

my question is , I want to use the function codes, but i can't use the codes for my buttons when I say case sy-ucomm. Because the functions are not available in my sy-ucomm.

how can I use these functions? Do I have to use them with a event?

Read only

Former Member
0 Likes
780

solved