There are two types of PowerApps: Form and Canvas. If you just modified the list item view form you will see a lot of limitations on available functionality. So, you might want to create a Canvas app instead. If you created the Canvas type PowerApp it will always be opened from the PowerApp site. What if you want your users to a user that PowerApp when they click on the New Item or Edit buttons in the list from SharePoint Online?

Assign PowerApp Canvas forms new item creation in SharePoint

Use The PowerShell Script Provided Below

 

Pre-requisitions:- You need to have at least site collection admin permissions
– Run PowerShell ISE with admin privileges on your local machine
– Install pnp

Install Module SharePointPnPPowerShellOnline

 

The script itself is here


Connect-PnPOnline -url https://CONTOSO.sharepoint.com/sites/dev -UseWebLogin
$list = Get-PnPList "EUTX  Architecture Services"
write-host $list.Name
$contenttypes= Get-PnPContentType -List "EUTX  Architecture Services"
foreach($cc in $contenttypes)
 {   
    
    Write-Host $cc.Name
    If ($cc.Name -eq "Item"){
    $cc.EditFormUrl = "SitePages/ItemEditForm.aspx"
    $cc.NewFormUrl = "SitePages/ItemEditForm.aspx"
    $cc.Update($false)}
    
 }

# assuming list content type 0 == Item
# otherwise, you need to set this on the correct list content type
# no update child content types
# you may have to set $true if you have content types in your list

$context = Get-PnPContext
$context.ExecuteQuery()

Do you use an External Software Company for your development?

Take a short survey and tell us more

How Do Enterprise Companies Use OutSystems?

Alex Pashkevych
support@chironit.com
+1 (888) 333 -7858

LinkedIn
https://www.linkedin.com/in/alex-pashkevych/

START UPPING YOUR EFFICIENCY AND GET USEFUL TIPS AND READY-TO-USE SOLUTIONS


Some of our reputable clients include among others the IRS, Deloitte, AP, E.W. Scripps, 5/3 Bank, and the Credit Suisse, for which we significantly improved their business processes, increasing employee performance by 500%.


Sign up to our news letter and receive industry updates, news and tips on how to improve internal collaboration workspace, automate business processes and find solutions for a possible issues you might face now or in the future. We also provide custom-tailored systems and applications in case you need one.

By subscribing, you agree to the processing of your personal data by Chiron as described in the Privacy Statement.