Wednesday 20 August 2014

SPBasePermissions

Members

Member nameDescription
EmptyMaskHas no permissions on the Web site. Not available through the user interface.
ViewListItemsView items in lists, documents in document libraries, and view Web discussion comments.
AddListItemsAdd items to lists, add documents to document libraries, and add Web discussion comments.
EditListItemsEdit items in lists, edit documents in document libraries, edit Web discussion comments in documents, and customize Web Part Pages in document libraries.
DeleteListItemsDelete items from a list, documents from a document library, and Web discussion comments in documents.
ApproveItemsApprove a minor version of a list item or document.
OpenItemsView the source of documents with server-side file handlers.
ViewVersionsView past versions of a list item or document.
DeleteVersionsDelete past versions of a list item or document.
CancelCheckoutDiscard or check in a document which is checked out to another user.
ManagePersonalViewsCreate, change, and delete personal views of lists.
ManageListsCreate and delete lists, add or remove columns in a list, and add or remove public views of a list.
ViewFormPagesView forms, views, and application pages, and enumerate lists.
AnonymousSearchAccessList Make content of a list or document library retrieveable for anonymous users through SharePoint search. The list permissions in the site do not change.
OpenAllow users to open a Web site, list, or folder to access items inside that container.
ViewPagesView pages in a Web site.
AddAndCustomizePagesAdd, change, or delete HTML pages or Web Part Pages, and edit the Web site using a SharePoint Foundation–compatible editor.
ApplyThemeAndBorderApply a theme or borders to the entire Web site.
ApplyStyleSheetsApply a style sheet (.css file) to the Web site.
ViewUsageDataView reports on Web site usage.
CreateSSCSiteCreate a Web site using Self-Service Site Creation.
ManageSubwebsCreate subsites such as team sites, Meeting Workspace sites, and Document Workspace sites.
CreateGroupsCreate a group of users that can be used anywhere within the site collection.
ManagePermissionsCreate and change permission levels on the Web site and assign permissions to users and groups.
BrowseDirectoriesEnumerate files and folders in a Web site using Microsoft Office SharePoint Designer 2007 and WebDAV interfaces.
BrowseUserInfoView information about users of the Web site.
AddDelPrivateWebPartsAdd or remove personal Web Parts on a Web Part Page.
UpdatePersonalWebPartsUpdate Web Parts to display personalized information.
ManageWebGrant the ability to perform all administration tasks for the Web site as well as manage content. Activate, deactivate, or edit properties of Web site scoped Features through the object model or through the user interface (UI). When granted on the root Web site of a site collection, activate, deactivate, or edit properties of site collection scoped Features through the object model. To browse to the Site Collection Features page and activate or deactivate site collection scoped Features through the UI, you must be a site collection administrator.
AnonymousSearchAccessWebLists Content of lists and document libraries in the Web site will be retrieveable for anonymous users through SharePoint search if the list or document library has AnonymousSearchAccessList set.
UseClientIntegrationUse features that launch client applications; otherwise, users must work on documents locally and upload changes. 
UseRemoteAPIsUse SOAP, WebDAV, or Microsoft Office SharePoint Designer 2007 interfaces to access the Web site.
ManageAlertsManage alerts for all users of the Web site.
CreateAlertsCreate e-mail alerts.
EditMyUserInfoAllows a user to change his or her user information, such as adding a picture.
EnumeratePermissionsEnumerate permissions on the Web site, list, folder, document, or list item.
FullMaskHas all permissions on the Web site. Not available through the user interface.

 

Wednesday 13 August 2014

Create a Site Column, Content Type, and List for SharePoint

Create a Site Column, Content Type, and List for SharePoint

Creating Custom Site Columns

This example creates a list for managing patients in a hospital. First, you must create a SharePoint project in Visual Studio and add site columns to it, as follows.

To create the project

  1. On the Visual Studio File menu, choose New, Project.
  2. In the New Project dialog box, under either Visual C# or Visual Basic, expand the SharePoint node, and then choose 2010.
  3. In the Templates pane, choose SharePoint 2010 Project, change the name of the project to Clinic, and then choose the OK button.
    The SharePoint 2010 Project template is an empty project that's used in this example to contain site columns and other project items that are added later.
  4. On the Specify the site and security level for debugging page, enter the URL for the local SharePoint site to which you want to add the new custom field item, or use the default location (http://<SystemName>/).
  5. In the What is the trust level for this SharePoint solution? section, use the default value Deploy as a sandboxed solution.
    For more information about sandboxed and farm solutions, see Sandboxed Solution Considerations.
  6. Choose the Finish button. The project should now be listed in Solution Explorer.

To add site columns

  1. Add a new site column. To do this, in Solution Explorer, open the shortcut menu for Clinic, and then choose Add, New Item.
  2. In the Add New Item dialog box, choose Site Column, change the name to Patient Name, and then choose the Add button.
  3. In the site column's Elements.xml file, leave the Type setting as Text, and change the Group setting to Clinic Site Columns. When complete, the site column's Elements.xml file should look like the following example.
    <Field
         ID="{f9ba60d1-5631-41fb-b016-a38cf48eef63}"
         Name="Clinic - Patient Name"
         DisplayName="Patient Name"
         Type="Text"
         Required="FALSE"
         Group="Clinic Site Columns">
    </Field>
    
  4. Using the same procedure, add two more site columns to the project: Patient ID (Type = "Integer") and Doctor Name (Type = "Text"). Set their Group value to Clinic Site Columns.
Creating a Custom Content Type

Next, create a content type—based on the Contacts content type—that includes the site columns that you created in the previous procedure. By basing a content type on an existing content type, you can save time because the base content type provides several site columns for use in the new content type.

To create a custom content type

  1. Add a content type to the project. To do this, in Solution Explorer, choose the project node
  2. On the menu bar, choose Project, Add New Item.
  3. Under either Visual C# or Visual Basic, expand the SharePoint node, and then choose the 2010 node.
  4. In the Templates pane, choose the Content Type template, change the name to Patient Info, and then choose the Add button.
    The SharePoint Customization Wizard opens.
  5. In the Which base content type should this content type inherit from list, choose Contact as the content type on which to base the new content type, and then choose the Finish button.
    Doing this gives you access to other potentially useful site columns in the Contact content type, in addition to the site columns that you defined previously.
  6. After the Content Type designer appears, in the Columns tab, add the three site columns that you defined previously: Patient Name, Patient ID, and Doctor Name. To add these columns, choose the first list box in the site columns list under Display Name, and then choose each site column in the list one at a time.
  7. In addition to the three custom site columns, add the Comments site column from the site columns list.
  8. Select the Required check box for the Patient Name and Patient ID site columns to make them required fields.
  9. On the Content Type tab, make sure that the content type name is Patient Info, and then change the description to Patient information card.
  10. Change Group Name to Clinic Content Types, and leave the other settings at their default values.
  11. On the menu bar, choose File, Save All, and then close the Content Type designer.
Creating a List

Now, create a list that uses the new content type and site columns.

To create a list

  1. Add a list to the project. To do this, in Solution Explorer, choose the project node.
  2. On the menu bar, choose Project, Add New Item.
  3. Under either Visual C# or Visual Basic, expand the SharePoint node, and then choose the 2010 node.
  4. In the Templates pane, choose the List template, change the name to Patients, and then choose the Add button.
  5. Leave the Customize the list based on setting as Default (Blank), and then choose the Finish button.
  6. In the List Designer, choose the Content Types button to display the Content Type Settings dialog box.
  7. Choose the new row, choose the Patient Info content type in the list of content types, and then choose the OK button.
    Doing this adds all of the site columns from the Patient Info content type into the list.
  8. Delete all of the site columns in the list except for the following:
    • Patient ID
    • Patient Name
    • Home Phone
    • E-Mail
    • Doctor Name
    • Comments
  9. Under Column Display Name, choose an empty row, add a custom list column, and name it Hospital. Leave its data type as Single Line of Text.
    The custom list column applies only to this list. When you add a custom list column to a list, a new list content type, including all the columns added into the list, is created and set as the default list.
  10. Optionally, rather than setting the data type for the custom list column to Single Line of Text, you could instead set the data type for this column to Lookup, and its values would be retrieved from a table or another list. For information about Lookup columns, see List Relationships in SharePoint 2010 and Lookups and List Relationships.
  11. Next to the Patient ID and Patient Name boxes, select the Required check box.
  12. On the Views tab, choose an empty row to create a view. Enter Patient Details.
    On the Views tab, you can specify the columns that you want to appear in the SharePoint list.
  13. Choose the new Patient Details row, and then choose the Set as Default button.
    The new view is now the default view for the list.
  14. Add the following columns to the Selected Columns list in the following order:
    • Patient ID
    • Patient Name
    • Home Phone
    • E-Mail
    • Doctor Name
    • Hospital
    • Comments
  15. In the Properties list, choose the Sorting and Grouping property, and then choose the ellipsis button Ellipsis Icon to display the Sorting and Grouping dialog box.
  16. In the Column Name list, choose Patient Name, make sure that the Sorting column is set to Ascending, and then choose the OK button.
Testing the Application

Now that the custom site columns, content type, and list are ready, deploy them to SharePoint, and run the application to test it.

To test the application

  1. On the menu bar, choose File, Save All.
  2. Choose the F5 key to run the application.
    The application is compiled, and then its features are deployed to SharePoint and activated.
  3. On the Quick Navigation bar, choose the Patients link to display the Patients list.
    The column names in the list should match those that you entered on the Views tab in Visual Studio.
  4. Choose the Add new item link to create a patient information card.
  5. Enter information into the fields, and then choose the Save button.
    The new record appears in the list.