Newbies ccharris Posted September 20, 2001 Newbies Posted September 20, 2001 I have been unable to find any documentation on record level security. I know that it somehow involves calculations but if anyone can provide some simple examples I would appreciate it.
Kurt Knippel Posted September 20, 2001 Posted September 20, 2001 SecurityLevel = 1 and gUserID <> "admin" The above is a simple boolean equation to establish the security. Assuming that the SecurityLevel field is set to 1 (i.e. the record is secured), and the gUserID is "admin" the equation will evaluate to 1, thus allowing access. In the case of record level security any equation that evaluates to 1, or Yes or True will cause the record to be secured, and thus unavailable. Since the value of the equation can either be 1 or 0, any given record will either be available or not. To figure this out for yourself, simply write down the criteria that would secure a particular record, and also write down the criteria that would make records accessible. You then just need to translate that into a boolean expression.
Recommended Posts
This topic is 8465 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now