‎2008 Nov 14 9:14 AM
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?
‎2008 Nov 15 10:11 PM
Muhammet,
you can control what need to be displayed on the left side by going to se80-utilities-settings-workbench(General)
Thanks
Bala Duvvuri
‎2008 Nov 16 3:48 AM
‎2008 Nov 17 9:33 AM
‎2008 Nov 16 9:02 PM
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
‎2008 Nov 24 10:54 AM
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?
‎2009 Jan 13 2:05 PM