Connect Full Organizational Role with Organization(Account)

Hello community,

 

I am trying to connect a full organizational role with an organization. To implement this solution I want to update the Account column of SysAdminUnit table which is impossible from the client side. Is there a way I can update the Account column of SysAdminUnit?

 

Like 0

Like

1 comments

Hello,

 

Could you please specify what is the purpose of connecting an organizational role with an Account? Organizational roles are used to distribute access rights between the users in the system, however, organizations and accounts do not have access to the system.

 

You can update the table with a SQL query like

UPDATE SysAdminUnit 

SET AccountId = value

WHERE condition;

Where the condition can be something like

Id = '9dc7626c-e03a-4978-b5c2-cdcf99de7801'

or

Name like '%Accounting Department%'

 

Best regards,

Dariy

Show all comments