Hi @Brice235i ,
Based on the needs that you mentioned, I think the solution I provided could achieve your needs.
If you want to open the Detail Screen or Edit screen of your standalone canvas app when you click the "New" or "Edit" button within your SP list without creating a custom form for your SP list, I afraid that there is no way to achieve your needs currently.
Currently, as an alternative solution, you need to create a custom form for your SP list firstly, then from your custom form to launch your standalone app.
Within your custom form app, set the OnView property of the SharePointIntegration control to following:
Launch("https://web.powerapps.com/apps/76897698-xxxx-b2de-xxxx-xxxx74f114f2", TargetScreen, "DetailScreen", ItemID, SharePointIntegration.Selected.ID)
Note: The TargetScreen and ItemID represents the parameters you need to pass to your standalone canvas app. The "DetailScreen" and SharePointIntegration.Selected.ID represent the correspoding parameter value. The '76897698-xxxx-b2de-xxxx-xxxx74f114f2' represents the App Id of your standalone canvas app.
Set the OnEdit property of the SharePointIntegration control to following:
Launch("https://web.powerapps.com/apps/76897698-xxxx-b2de-xxxx-xxxx74f114f2", TargetScreen, "EditScreen", ItemID, SharePointIntegration.Selecte
Then within your standalone canvas app, set the OnStart property of the App control to following:
Set(TargetScreen, Param("TargetScreen"));
Set(ItemID, Param("ItemID"));
If(
TargetScreen = "DetailScreen",
Navigate(DetailScreen, ScreenTransition.None),
TargetScreen = "EditScreen",
Navigate(EditScreen, ScreenTransition.None)
)
Within your Display screen, set the Item property of the Display form to following:
If(
!IsBlank(ItemID),
LookUp('YourSPList', ID = ItemID),
BrowserGallery1.Selected
)
Within your Edit screen, set the Item property of the Edit form to following:
If(
!IsBlank(ItemID),
LookUp('YourSPList', ID = ItemID),
BrowserGallery1.Selected
)
More details about navigating to specific form based on the parameters specified within the App URL, please check my response within the following thread:
https://powerusers.microsoft.com/t5/General-Discussion/PowerApps-Navigate-to-Screen-based-on-params-...
Please take a try with above solution I provided step by step, then check if the issue is solved.
Best regards,