Jump to content

Hidding a record...


Addam

This topic is 8137 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • 2 weeks later...

You need to have something that defines what records they can see.

For instance, let's say that you have a field called Access level and it will be a number between 1 and 5 (highest level).

You then need to define all of your finds to include a calculation into the Access Level field based upon the users password.

For example, the Set Field calculation (in Find Mode) might be as follows:

code:


Case (

Password = "Lowest", "== 1",

Password = "Low", ">= 2",

Password = "Normal", ">= 3",

Password = "High", ">= 4",

Password = "Highest", "",

"== 99"

)

The last part there is so that if the user entered with an invalid password the finds will never return any records.

You could also do this with record level access if using Filemaker 5.5 and above, but it just makes the records unavailable or uneditable but still shows them in the finds and could confuse users.

Link to comment
Share on other sites

This topic is 8137 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.