Reputation: 1
I created a Custom SharePoint List with a custom work flow. Basically the list does the following:
What I need is as the form goes from one group to the next how can I make sure that Group C doesn't see the responses from Group B? How do I write this into the workflow?
Upvotes: 0
Views: 55
Reputation: 314
We use a custom form framework (called ShockOut SPForms) that allows us to display content based on group membership. We make the form as a .aspx file in the site (using sharepoint designer). Click here to check out the framework. Using this custom framework allows us to make very customized forms by using some html and a little javascript.
You asked how to write the access control into the workflow, so my answer may not be right on target. However, the workflow does not control access to the list data.
Column level permissions are not included in SharePoint to my knowledge. You may need to split the information into separate lists to enable access control.
Using a custom form and some queries to the REST or SOAP api, you could accomplish your result. (Note: this last suggestion is for SharePoint experts).
Upvotes: 1