SharePoint 2007: How to restrict field level access?

Is this possible on the SharePoint 2007 list (MOSS, although I don’t think it is Enterprise Edition) so that users from one SharePoint group can edit values ​​in some fields and users in another group to edit values ​​in another field?

Of all the searches that I have done, this is not possible, since I will accept backup answers that offer the best way to accomplish something like this (for example, maintain items in separate lists by linking them by ID).

I do not have access to Central Admin, but I have full control over the site. In addition, this site was not configured for custom code, therefore, in addition to changing the list settings (and site settings), I can make changes through SharePoint Developer (but not Visual Studio).

Thank you very much in advance!

Steve

+3
source share
4 answers

You are right that it is not possible to set permissions at the field level without a special code. In addition, you are on the right track of thinking for individual lists, although you should be aware that searching for a SharePoint list is a rather weak correlation. Used, but not very reliable.

SharePoint Designer .

+1

SharePoint Laura Rogers. , SharePoint Designer.

. SPListDisplaySetting CodePlex. , , .

+1

" SharePoint 2007" (EditForm.aspx). , , .

0
source

'a' workaround to get this function is to change the type of content associated with the list item using workflows.

Same:

The user creates a list item in content type A (restricted fields).

The workflow starts, content type B changes (all fields).

The administrator receives a notification, opens a list, fills out additional form fields.

Etc..

0
source

Source: https://habr.com/ru/post/1718218/


All Articles