A basic one -
Is there any way I can provide the read/write/delete privileges of a schema only to one Operator Group?And for the rest Operator groups it should be hidden/non accessible/readonly.
Can I do this with sys filter?
Solved! Go to Solution.
Yes, System filters let you manage the read and write permissions of entities detailed in schemas:
&These filters are entered at the main element level of the schemas and, as shown in the following examples, can be formed to restrict access:
<sysFilter name="writeAccess"> <condition enabledIf="hasNamedRight('admin')=false" expr="FALSE"/> </sysFilter>
Example 2:
<sysFilter name="readAccess"> <condition enabledIf="$(loginId)!=0" expr="FALSE"/> </sysFilter> <sysFilter name="writeAccess"> <condition enabledIf="$(loginId)!=0" expr="FALSE"/> </sysFilter>
Possible expr attribute values used to define the condition are TRUE and FALSE.
Yes, System filters let you manage the read and write permissions of entities detailed in schemas:
&These filters are entered at the main element level of the schemas and, as shown in the following examples, can be formed to restrict access:
<sysFilter name="writeAccess"> <condition enabledIf="hasNamedRight('admin')=false" expr="FALSE"/> </sysFilter>
Example 2:
<sysFilter name="readAccess"> <condition enabledIf="$(loginId)!=0" expr="FALSE"/> </sysFilter> <sysFilter name="writeAccess"> <condition enabledIf="$(loginId)!=0" expr="FALSE"/> </sysFilter>
Possible expr attribute values used to define the condition are TRUE and FALSE.
More information on the link below.
https://docs.campaign.adobe.com/doc/AC/en/CFG_Editing_schemas_Protecting_schemas.html
Views
Likes
Replies