How does removing an app owner’s profile from Azure Active Directory (AAD) impact access to the app? Model-driven and Canvas apps manage their ownership differently. Model-driven app ownership In a model-driven app, there is no concept of a co-owner. What happens to the application if the original owner/creator leaves the organization? Users who already have … Continue reading Updating ownership of Power Apps
How to get the IP address of your Power Automate
How to get the IP address of your power automate: Create a manual trigger flowAdd HTTP actionMethod GET and URL https://api.ipify.org/?format=json Add parse JSON action, and pass below schema { "type": "object", "properties": { "ip": { "type": "string" } } } Add compose action to view the IP address Test the flow
Disable hyperlink for lookup columns in Views – Dataverse
To disable hyperlink, we need to add custom control 'Power Apps Read-Only Grid' to the view which has property 'Navigation types allowed' which can be updated to disable it To change this behavior, add Custom Controls to the view: Open the desired view in classic modeClick on custom controls Click on Add control and select … Continue reading Disable hyperlink for lookup columns in Views – Dataverse
Launching Apps from PowerApps
We will see how to open apps using Launch() function from Power Apps The hardest part of opening other apps from PowerApps is knowing what the correct URL Scheme is. Unfortunately it’s not particularly easily to find this info. For launching phone Launch("tel:"&phonenumber) For launching maps, you can pass particular address as parameter Launch("http://maps.google.com/?q=" & … Continue reading Launching Apps from PowerApps
How to add new line to String in Text label using Char() – Power Apps
For text label, usually we get requirements to add content and align it in new line To add a new line, we can use the Char function which translates a number into a string with the corresponding ASCII character. Syntax Char( CharacterCode ) CharacterCode - Required. ASCII character code to translate. We will use Char(10) which indicates a new line … Continue reading How to add new line to String in Text label using Char() – Power Apps
Visualize view data on button click in model-driven apps with Power BI
This feature combines the capabilities of Power Apps, Power BI and Dataverse in a seamless way to help you visualize and understand your data – with one click. Power BI quick reports add to the flexibility of data visualization options already available in Power Apps. While charts and custom components allow you to create specific, … Continue reading Visualize view data on button click in model-driven apps with Power BI