A vendor from LiveCycle told my boss it was possible to lock down certain sections of a form created in LiveCycle to certain users (in this case, employees). If anyone has a suggestion for how to do this, I'd love to hear it!
I have several fields in different subforms that only one of our employees needs to use. Rather than create a separate form (survey) for them, we want to include it on this one. Others users, however, do not need to tab to these fields, and should not be able to enter data into them.
Here all employees have usernames and passwords for their computers. If there were some way for the form to recognize that employee when they were on their computer that would be IDEAL, or if they could just put their username and a password into fields on the form that would work too, but I'm not sure how to make that work.
3 groups of people, User, Admin, Setup person
I resolved this by having the users having access to just the basic form
The specific Admin and Config pages can be hidden in the form Init script,
Then I have a button that after passing password, will display either the Admin page or the config page (2 different PW's)
Admin thus having acccess to the form and their required page
Setup person having access to all including the config page for pre-loading initial data
This works as long as you can separate the fields to specific pages
If the users need to see all, and if the specific data is on different pages, then you can use a script to flag the data fields on the specific pages as read only (or hiidden)
If the data is mixed on different pages, but you can name the data with a special prefix
ie: a201, a 202, g203, g... where A = admin and G = general, then the script may be able to differnentiate them and flag them accordingly as RO or even hidden.
The script I am talking about is in the tutorials and will loop through the entire form, or specific pages and flag fields as read only. I am sure U could change this and look for field names that start with a or g and change the presence to visible or hidden.
Paul G did a Tech talk on this awhile back.
http://www.acrobatusers.com/tech-talks
Tech Talk: Advanced Form Techniques with LiveCycle Designer
The locking fields is at the end of the presentation.
Not sure if this is what you are think about, also, I am new at this, so other solutions I am sure exist.