How to deactivate a tab in the tabs at the bottom of the product window

How can I deactivate a tab in the tabs at the bottom of the product window if this is not needed?
Best regards

Hi Matze,

use the java client , open “window management” and set the tab inactive.
Then do a server cache reset and you are set.

cheers,
Norbert

Hi Norbert, can you please give me the information in which db-table(s) I must change values
to inactive the tab in the product-form, because I want to reconfigure it after installing a new metasfresh version?
Best Regards
Matthias

Hi Norbert,
I have done it e.g. by the following SQL-statements:

UPDATE public.ad_tab set isactive = ‘N’ where name = ‘CU-TU Zuordnung’ and ad_window_id = 140 and ad_tab_id = 540517;
UPDATE public.ad_tab set isactive = ‘N’ where name = ‘Maßeinheit Umrechnung’ and ad_window_id = 140 and ad_tab_id = 53246;
UPDATE public.ad_tab set isactive = ‘N’ where name = ‘Produkt Nährwerte’ and ad_window_id = 140 and ad_tab_id = 541159;
UPDATE public.ad_tab set isactive = ‘N’ where name = ‘Produkt Allergene’ and ad_window_id = 140 and ad_tab_id = 541164;
UPDATE public.ad_tab set isactive = ‘N’ where name = ‘Zutaten’ and ad_window_id = 140 and ad_tab_id = 542058;

Best regards
Matthias

hi,

yes you can use SQL as well.
In my PoV that should be sufficient:

UPDATE public.ad_tab set isactive = ‘N’ where ad_tab_id = 540517;