Hi,
How can I add restrictions in the schema - means I have created company operator group. If user doesn't have access to the company operator group, then it should not be able to access in the schema.How can I use sysFilter in schema to access group.
Regards,
Tejashri
Views
Replies
Total Likes
below conditions will restrict access to all users which not belong to the company group.
<sysFilter name="readAccess"> <condition enabledIf="hasNamedRight('company')=false" expr="FALSE"/> </sysFilter> <sysFilter name="writeAccess"> <condition enabledIf="hasNamedRight('company')=false" expr="FALSE"/> </sysFilter>
Regards,
Milan
Hi @Milan_Vucetic @DavidKangni @isahore
I want to give schema access to those users only who login as admin or internal and the users who have "company" as operatorGroup/namedRight.
I tried below logic in the schema but its not working.
<sysFilter name="readAccess">
<condition enabledIf="true" expr="hasNamedRight('bank')=true OR $(login)='admin' OR $(login)='internal'"/>
</sysFilter>
What should I do?
Thanks,
Views
Replies
Total Likes
Hi,
You have to create the named rights and add it to your user. Also make sure give the operator or group the access to the folders you want.
Thanks
David
Views
Replies
Total Likes
Hi @DavidKangni
I have created name right and added to my user. Here I want restriction to the schema instead of folder.
How can I add the restriction in the schema so that only "company" operator group can access the schema?
Thanks,
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi @tejashriw155148 ,
This should work:
<sysFilter name="readAccess">
<condition enabledIf="(hasNamedRight('bank') OR $(login)='admin' OR $(login)='internal')" expr="1=1"/>
</sysFilter>
Views
Replies
Total Likes
Hi @tejashriw155148 ,
This should work:
<sysFilter name="readAccess">
<condition enabledIf="(hasNamedRight('bank') OR $(login)='admin' OR $(login)='internal')" expr="1=1"/>
</sysFilter>
Thanks,
Ishan
Views
Replies
Total Likes
Hello @isahore
I tried the above logic but its not working as expected.
When I logged in as user who is not admin or internal user and also doesn't have access of bank operator group, still able to access data from the schema..
The requirement is that:
Only the users who logged in as admin or internal or who has bank operator group should access data from the schema.
Thanks for your help.
Regards,
Tejashri
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies