modify adress site sharepoint / submit form to list (helpdesk templat

Copper Contributor


Good morning,

On SharePoint I used the HELPDESK model. At one point I had to modify the site page at the name level and now it sends me to the wrong URL when I send a form (send a request). The request arrives fine in Microsoft List, but it shows an error.

Is it possible to modify the page:

https://XXX.sharepoint.com/sites/QRQCSI/Lists/Liste%20des%20incidents%20%20Demandes/AllItems.aspx

so that it becomes:

https://XXX.sharepoint.com/sites/QRQCSI/Lists/List%20of%20incidents%20%20Requests/yourrequests.aspx

or, even better:

https://XXX.sharepoint.com/sites/QRQCSI/Lists/yourrequests.aspx

3 Replies

@jbeauvois Try this:

  1. Go to you existing SharePoint?Microsoft Lists list view (https://XXX.sharepoint.com/sites/QRQCSI/Lists/Liste%20des%20incidents%20%20Demandes/AllItems.aspx)
  2. Click on Switch view options drop down at the top right corner.
  3. Select Edit current view.ganeshsanap_0-1678360221968.png
  4. Change the view name/URL as per your requirements and click OK. ganeshsanap_1-1678360378517.png

Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.

For SharePoint/Power Platform blogs, visit: Ganesh Sanap Blogs

@ganeshsanap thanks for your answer. but i would like to change the url "before" allitems (in red) and modify the target site when i click on submit

 

https://XXX.sharepoint.com/sites/QRQCSI/Lists/Liste%20des%20incidents%20%20Demandes/AllItems.aspx

@jbeauvois Try using PnP PowerShell like: 

 

$SiteURL = "https://contoso.sharepoint.com/sites/siteName/"
$ListName = "OldListName"
$NewListURL = "NewListName"
  
#Connect to site
Connect-PnPOnline -Url $SiteURL -Interactive
 
#Get the list instance
$List= Get-PnPList -Identity $ListName -Includes RootFolder
 
#change SP list url
$List.Rootfolder.MoveTo($NewListURL)
Invoke-PnPQuery

 

If $NewListURL = "NewListName" does not work, try using $NewListURL = "Lists/NewListName"


Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.

For SharePoint/Power Platform blogs, visit: Ganesh Sanap Blogs