We have the following scenario: A customer (owner) has different organizations.
The organizations should only see there own datas.
The headquarter should see all organization datas together at one time without to select/change the organization.
Is that possible? If yes, how I must configurate such a headquarter user?
This is possible, organisation data is not filtered for application managers or developers. So if you give the user on the headcuarter the right level he should be possible to see all organisations.
I am looking at version 5 now, it could be a bit different in 4.
In the method ‘svy_nav_onOpen’, you will see in the bottom of the method something like this:
// filter data
if (! (_to_sec_user$user_id.admin_level == scopes.svySecurityManager.ADMIN_LEVEL.APPLICATION_MANAGER || _to_sec_user$user_id.admin_level == scopes.svySecurityManager.ADMIN_LEVEL.DEVELOPER)) {
scopes.svySecurityManager.filterOwner();
scopes.svySecurityManager.filterOrganization();
}
Here you can see what levels are not filtered in the user screen in the security you can give users a level.