May 10, 200718 yr I am serving a system on the web and would like to be able to distinguish between users by privilege set. I have defined a user name NormalUser and defined the Privilege Set as [Data Entry Only]. I put logic into my FMP Script to clear some fields when this user is encountered. However, it seems that the Privilege Set that is recognized when I logon as that user and run the script is actually [Full Access]. How is this possible??? I even defined other privilege set names to distinguish users, but these turned up as [Full Access} as well. What is the point in defining other Privilege Set Names if somehow [Full Access] is the only one that shows up??? Anyone have any insight into this?: I need to be able to get this to work soon and thought that Filemaker Pro 7/8 would give me more flexibility.
May 10, 200718 yr When a script has the option "Run script with full access privileges", get(privilegesetname) returns "[Full Access]". If you need to know the privilege set that was logged in, you could store that in a field (maybe try an unstored calc).
May 10, 200718 yr Author Thanks for the quick response. If you can turn this off and still run the script, then what is the point of turning it on in the first place???
May 10, 200718 yr Sometimes you want certain fields to be inaccessible except through a particular script.
May 11, 200718 yr The purpose is to confer power onto the script, not the user so that the script can do something that the user lacks privileges to do. In some instances you can get the user's actual privilege set name by assigning a script parameter of Get(PrivilegeSetName) through the UI device that calls the script. That information can then be set into a variable at the head of the script for further reference. Steven
Create an account or sign in to comment