I cant seen the item level permission in list

Thessa 0 Reputation points
2023-01-27T05:28:50.9166667+00:00

I need the item level permissions in creating my timesheet, but i can't see it in my advance setting on the list setting.

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
11,175 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. AllenXu-MSFT 23,511 Reputation points Microsoft Vendor
    2023-01-27T06:36:31.01+00:00

    Hi @Thessa ,

    First, The item level permission is not available for the Issue Tracking list and document libraries through UI.

    Second, check the permission level of the user in site and list level. The Item Level Permissions functionality is available to this user only if the level of site and list is at least design.

    Finally, with admin permissions, we can programmatically configure project-level permissions in SharePoint Online through PowerShell.

    #Set Parameters  
    $SiteURL = "https://xxxx.sharepoint.com/sites/yyyy"  
    $ListName = "listname"  
        
    #Connect to SharePoint Online site  
    Connect-PnPOnline -Url $SiteURL  -Credentials (Get-Credential)  
       
    #Get the List  
    $List = Get-PnPList $ListName -Includes ReadSecurity  
       
    #Set List Item-Security  
    $List.ReadSecurity = 2 #"Read items that were created by the user"  
    $List.WriteSecurity = 2 #Create items and edit items that were created by the user  
    $List.Update()  
    Invoke-PnPQuery  
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.