Require user to enter data

Hello, I am trying to map out how we can add user restrictions to a Note workflow applcation. We need to make sure that certain users enter data in certain fields before they submit the document. Is the only way to do this by adding buttons next to each field??

Thanks!!

Subject: How about using ROLES?

Certain fields can only be seen, completed by a member(s) of a role.

!@IsMember(“[Reg Mgrs]”; @UserRoles)

or

!@Contains(@UserRoles;“MaintTeam”)

Subject: Require user to enter data

Why don’t you just add some input validation code into your submit button or querysave event?