Creator is only person who can edit

J

Janie

I need to set up my form so that the only person who can edit the data in the
form is the person who originally filled out the form. All others should
have read only access. How do I do that? Thanks!
 
A

Alex [MSFT]

Set up a WhoAmI web service that gets the logon ID of the currently logged
in user. When the form is being submitted, save that logon ID somewhere in
the main data source. This will get you started:

Set up a view where all the data is read only. Make sure this view is NOT
the default view.

Create a rule that fires on load of the form: if the logon id of the current
user != the logon id stored in the main data source, switch to view that
presents read-only version of the data.

Good luck,
Alex
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top