Rules using HR09 security

 2 Replies
 0 Subscribed to this topic
 68 Subscribed to this forum
Sort:
Author
Messages
bman
Basic Member Send Private Message
Posts: 9
Basic Member
We have some employees who have a level "2" in the security level field.  All other employees are set to "9"  We would like to add a rule to all security classes that use the "employee" table and the HR11 "form".  We are having issues coding the rules.  Any assistance would be appreciated.
Gordon
Basic Member Send Private Message
Posts: 8
Basic Member
I use groups a lot for writing rules. If you create a group and add the level 2 to the group depending on the number in the group you can easily write a rule that state if member of group xxxx all access else no access or inp
Thanks, Gordon
Gordon
Basic Member Send Private Message
Posts: 8
Basic Member
Here is sample of how I use groups on the HR Files Access Employee table
user.isMemberOf('RESMGRS')&&(table.SEC_LOCATION=='GRANT'||table.SEC_LOCATION=='RESDIV'||table.PROCESS_LEVEL=='HLM2'||table.PROCESS_LEVEL=='HLM4'||table.SEC_LOCATION=='CLINIC')
Thanks, Gordon