Adobe AD0-E330 Practice Test 1

How can you use sysFilter to limit write access to a schema to only members of the Administrator operator group?
xml <sysFilter name='writeAccess'> <condition enabled if='hasNamedRight('admin')=true' expr='TRUE'/> </sysFilter>
xml <sysFilter name='writeAccess'> <condition enabled if='hasNamedRight('admin')=false' expr='FALSE'/> </sysFilter>
xml <sysFilter name='writeAccess'> <condition enabled if='hasNamedRight('admin')=false' expr='TRUE'/> </sysFilter>
The sysFilter element in Adobe Campaign Classic can be used to limit access to specific operations based on operator rights. To restrict write access to only members of the Administrator operator group:
Condition Explanation:
The correct syntax should enable the condition if the user has the admin right. Here, hasNamedRight('admin')=true checks if the operator belongs to the Administrator group. When this condition is true, the expression expr='TRUE' grants write access, thus restricting it only to those with admin rights.
The configuration correctly restricts access based on operator rights, ensuring that only administrators can perform write operations on the specified schema