Hi
Since we upgraded to v8, my default Workplace menu no longer is the default. I have a custom Workplace menu, but when I login, it now uses the Sales Workplace menu instead, meaning I always have to manually change it.
Is there a setting somewhere to allow me to set my default Workplace?
thanks
Like
Hi Mark,
Thank you for your question!
This is a known issue and our R&D team is already working on implementing a mass fix for future releases. As for now, this can be fixed by enabling the feature DisableAutoFindWorkplace on the instance.
For Postgre:
do $$
DECLARE
featureCode varchar(100) = 'DisableAutoFindWorkplace';
featureId UUID;
BEGIN
featureId = (select "Id" from "Feature" where "Code" = featureCode limit 1);
IF featureId is null THEN
insert into "Feature"
("Name", "Code")
values
(featureCode, featureCode);
featureId = (select "Id" from "Feature" where "Code" = featureCode limit 1);
end IF;
delete from "AdminUnitFeatureState" where "FeatureId" = featureId;
insert into "AdminUnitFeatureState"
("SysAdminUnitId", "FeatureState", "FeatureId")
values
('A29A3BA5-4B0D-DE11-9A51-005056C00008', 1, featureId),
('720B771C-E7A7-4F31-9CFB-52CD21C3739F', 1, featureId);
end $$;
For MS SQL:
DECLARE @featureCode varchar(max) = 'DisableAutoFindWorkplace',
@featureId uniqueidentifier;
set @featureId = (select top 1 Id from Feature where Code = @featureCode);
IF @featureId is null
BEGIN
insert into Feature
(Name, Code)
values
(@featureCode, @featureCode);
set @featureId = (select top 1 Id from Feature where Code = @featureCode);
END;
delete from AdminUnitFeatureState where FeatureId = @featureId;
insert into AdminUnitFeatureState
(SysAdminUnitId, FeatureState, FeatureId)
values
('A29A3BA5-4B0D-DE11-9A51-005056C00008', 1, @featureId);
Best regards,
Anastasiia
Anastasiia Lazurenko,
Thanks for your quick reply first of all. We use the SaaS Creatio, so is this something I need to raise a case with Creatio support to get applied?
Hi Mark,
If you have a Creatio cloud instance, please, check if there is an SQL Executor for Creatio installed. This add-on has been discontinued but if you still have it - you can still use it and run the above-mentioned queries yourself. If it's not present - we can do this on our end. Please, contact us at support@creatio.com in this case.
Best regards,
Anastasiia