Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form exclusive sign-off problem

Status
Not open for further replies.

mhudson

Technical User
Mar 8, 2001
69
US
I have a form that requires a sign-off to be completed, and according to our procedure, I am the only person authorized to do the signoff. How do I define the field or what kind of formula can I use to accomplish this? Any help will be greatly appreciated.
 
Typically, what I would do is have a role define the ability to signoff, and make a computed subform ("AllowSignoff") that loads when the user opening the document has the role.
For example, if the role is "[signoff]", then you can create a computed subform formula saying :

Code:
@if(@contains(@userroles;"[signoff]");"AllowSignoff";"ReadSignoff")

Then you can create the "AllowSignoff" subform that has the necessary functionality to signoff the document, and the "ReadSignoff" subform that allows the user to tell whether and when the document has been signed off.

Lots of fun in perspective !

Pascal Monett.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top