Add an Account section in the same workplace

Is it possible to add an Account section in the same workplace. So there will be 2 Account sections in 1 workplace.

Like 0

Like

3 comments
Best reply

Hello,

 

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")

values ('f4cd2a9b-1312-4d26-9205-c09e8ba56218', '005063c9-8180-e011-afbc-00155d04320c')

 

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.

 

Kind regards,

Mira

Hello,

 

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")

values ('f4cd2a9b-1312-4d26-9205-c09e8ba56218', '005063c9-8180-e011-afbc-00155d04320c')

 

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.

 

Kind regards,

Mira

Mira Dmitruk,

Thank you. It works..

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?

Ahmad Bagus Ariyanto,

 

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.

 

Kind regards,

Mira 

 

Show all comments