Salamander2007
Salamander2007

Reputation: 6394

Automatically set list item permission, after new item is created

We have a SharePoint Team Site (WSS 3.0 not MOSS), that includes Tasks list to records every tasks related to a project. Here's the scenario.

Users :

How do we set the permission settings so that

I was unable to achieve the intended results using standard WSS permission settings, without resorting to manual permission settings on each item in the list. I'm imagining that the automatic solution has to be accomplish using some sort of workflow or trigger.

Upvotes: 0

Views: 9473

Answers (6)

Douglas
Douglas

Reputation: 490

It seems that you need a workflow to automatically assign permissions based on the user roles or [Assign To] fields. Try the third-part tool Permission Workflow, this may help you to solve the issues.

Upvotes: 0

user86011
user86011

Reputation: 45

I recommend you to check this solution: SharePoint Column/View Permission by SharePointBoost (199$)

Through this you can set read only permission to people you want on all the items, Your requirement "Every users (Supervisor and team members) can see any tasks" is solved!

Also you can set edit permission to Supervisors. Second trouble solved!

As Ali said, advanced permission>items level permission can fulfill your last requirement.

Upvotes: 0

Ali
Ali

Reputation: 595

you do not need any workflow or event handlers ( still you can use them for your purpos but they will slow down the performance if you will be having a lot of items)

go to setting --> list settings click on Advanced Settings

in Item-level Permissions in read access select all items and in the same place in Edit access select only their own

and in permissions give list members a contributer role

for the suppervisor you can give him higher permission i think designer will work, or simply you can give him full controle on the list

Upvotes: 2

Preston Guillot
Preston Guillot

Reputation: 6724

Create a class that inherits from SPItemEventReceiver and override the ItemAdded method, setting your custom permissions in the overriedden method using the API.

http://blogs.msdn.com/brianwilson/archive/2007/03/05/part-1-event-handlers-everything-you-need-to-know-about-microsoft-office-sharepoint-portal-server-moss-event-handlers.aspx

Upvotes: 1

Leon Tayson
Leon Tayson

Reputation: 5011

You can set permissions by going to your List, click Settings dropdown. Under Permissions and Management, click "Permissions for this List". Click Actions and select Edit Permissions. Select the User/Group you want the permission to be changed then Click Actions & select Edit User Permissions.

HTH!

Upvotes: 1

Bryan Friedman
Bryan Friedman

Reputation: 544

Yes, you would have to write an event handler or workflow that will run upon item creation which would look at these column values and set the item level permissions as such.

Upvotes: 0

Related Questions