hi All,
I am bit confused between ReAD ACESS AND WRITE ACESS IN SYSFILTERS
SO BELOW IS THE CODE we are using.
what will happen practiccally if we ,use below code in schema
and all other operator groups when they try to see data and data fields in this schema
and whey query this scheam using quey acitivity
in case we use write parameter
<sysFilter name="writeAccess">
<condition enabledIf="hasNamedRight('newlyCreatedNamedRights')=false" AND "hasNamedRight('ADMIN')=false Expr="FALSE"/>
</sysFilter>
SO BELOW IS THE CODE we are using.
what will happen practiccally if we ,use below code in schema
and all other operator groups when they try to see data and data fields in this schema
and whey query this scheam using quey acitivity
in ncase here we use read parameter
<sysFilter name="READAccess">
<condition enabledIf="hasNamedRight('newlyCreatedNamedRights')=false" AND "hasNamedRight('ADMIN')=false Expr="FALSE"/>
</sysFilter>
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi @jefrii ,
By Default the operators with 'admin' namedRights can able to read and write access.
<sysFilter name="readAccess">
<condition enabledIf="hasNamedRight('NewNamedRights')=false" expr="FALSE"/>
</sysFilter>
If you use the above script, all the operators and operator groups having the named rights as 'NewNamedRights' (and 'admin' by default) can able to Read the data and query the data. And rest of the operators and operator group without this namedRights will see NO data in the schema.
<sysFilter name="writeAccess">
<condition enabledIf="hasNamedRight('NewNamedRights')=false" expr="FALSE"/>
</sysFilter>
Similarly, If you use the above script, all the operators and operator groups having the named rights as 'NewNamedRights' (and 'admin' by default) can able to Write (insert / update) the data. And rest of the operators and operator group without this namedRights won't be having permission to insert or update the data in this schema.
Hi @jefrii ,
By Default the operators with 'admin' namedRights can able to read and write access.
<sysFilter name="readAccess">
<condition enabledIf="hasNamedRight('NewNamedRights')=false" expr="FALSE"/>
</sysFilter>
If you use the above script, all the operators and operator groups having the named rights as 'NewNamedRights' (and 'admin' by default) can able to Read the data and query the data. And rest of the operators and operator group without this namedRights will see NO data in the schema.
<sysFilter name="writeAccess">
<condition enabledIf="hasNamedRight('NewNamedRights')=false" expr="FALSE"/>
</sysFilter>
Similarly, If you use the above script, all the operators and operator groups having the named rights as 'NewNamedRights' (and 'admin' by default) can able to Write (insert / update) the data. And rest of the operators and operator group without this namedRights won't be having permission to insert or update the data in this schema.
Views
Likes
Replies
Views
Likes
Replies