In order to add the same section to a workplace you ned to run the following script in the database, since it's not possible to do so from a Workplace setup:
insert into "SysModuleInWorkplace" ("SysWorkplaceId", "SysModuleId")
values ('_inser_ID_here_', '_inser_ID_here_')
So you need to find the ID of the needed section in the SysModuleId table + an ID of the workplace where you want to put add it in the SysWorkplaceId table.
It should look like this once you paste the needed IDs (please note that this is only an example):
insert into "SysModuleInWorkplace" ("SysWorkplaceId", "SysModuleId")
We would like to warn you, that though it is possible to add the same section to a workplace, we do not recommend doing so as this behavior wasn't tested and may result in unexpected issues. Also, we highly recommend testing it on a dev/test environment first to make sure it works as you need it.
In order to add the same section to a workplace you ned to run the following script in the database, since it's not possible to do so from a Workplace setup:
insert into "SysModuleInWorkplace" ("SysWorkplaceId", "SysModuleId")
values ('_inser_ID_here_', '_inser_ID_here_')
So you need to find the ID of the needed section in the SysModuleId table + an ID of the workplace where you want to put add it in the SysWorkplaceId table.
It should look like this once you paste the needed IDs (please note that this is only an example):
insert into "SysModuleInWorkplace" ("SysWorkplaceId", "SysModuleId")
We would like to warn you, that though it is possible to add the same section to a workplace, we do not recommend doing so as this behavior wasn't tested and may result in unexpected issues. Also, we highly recommend testing it on a dev/test environment first to make sure it works as you need it.
I have already put the same section in 1 Workpalce. So there will be 2 section in 1 Workplace. Next question is, can we change on of section Account to another name?
Please note that it is not possible to change the name only for one of them since this is the same object shown twice and if you change the name of one of them, the other one will change too.