Possibility to view & administer all Powerapps which are SPO list customized.
Solved! Go to Solution.
Hi @Anonymous ,
Please refer to Power Apps for Admins Connector where you can manage all the apps in default environment, including those integrated in SharePoint.
For instance, the following code returns all customized form in Default environment since all custom forms display name pattern are 'ListName on SiteName forms' by default.
Filter(PowerAppsforAdmins.GetAdminApps("Default Environment ID").value, "on" in properties.displayName && "forms" in properties.displayName)
Hope this helps.
Sik
Hi @Anonymous ,
Please refer to Power Apps for Admins Connector where you can manage all the apps in default environment, including those integrated in SharePoint.
For instance, the following code returns all customized form in Default environment since all custom forms display name pattern are 'ListName on SiteName forms' by default.
Filter(PowerAppsforAdmins.GetAdminApps("Default Environment ID").value, "on" in properties.displayName && "forms" in properties.displayName)
Hope this helps.
Sik
Thank you, would give try.
Is it a possibility to display SPO site/list URL on which Powerapps is customized.
Hi @Anonymous ,
Yes, the SharePoint list URL is composed by 'https://domainname.sharepoint.com/sites/sitename/Lists/listname', so the code resemble as follows.
"https://DomainName.sharepoint.com/sites/"& Last(FirstN(Split(ThisItem.properties.displayName," "),3)).Result &"/Lists/"& First(Split(ThisItem.properties.displayName," ")).Result
Hope this helps.
Sik
User | Count |
---|---|
10 | |
4 | |
3 | |
2 | |
1 |
User | Count |
---|---|
14 | |
8 | |
7 | |
3 | |
2 |