You develop a Power Apps app that allows users to upload images.
The app automatically resizes images and adds metadata tags to uploaded images.
The app must automatically tag images of checks within Dynamics 365 Finance.
You must enable access to the Power App from Finance and pass a variable to indicate context to the app.
Pop-up blockers are enabled on all user devices.
You need to configure the app.
What are two possible ways to achieve the goal? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
Click on the arrows to vote for the correct answer
A. B. C. D. E.AD.
https://docs.microsoft.com/en-us/dynamics365/fin-ops-core/fin-ops/get-started/embed-power-apps?toc=/dynamics365/commerce/toc.jsonTo enable access to the Power App from Dynamics 365 Finance and pass a variable to indicate context to the app, there are two possible ways to achieve the goal:
Option A: Add the app by using the Power Apps button on the standard Action pane
Option B: Use JavaScript to open a modeless dialog. Pass the context with a querystring value.
javascriptvar url = "https://web.powerapps.com/apps/{app-id}?context=" + encodeURIComponent(context); window.open(url, "app-window", "width=800,height=600");
Option C: Use JavaScript to open a new modal dialog. Pass the context with a querystring value.
window.open
, you can use Xrm.Navigation.openAlertDialog
to open a modal dialog. For example:cssvar url = "https://web.powerapps.com/apps/{app-id}?context=" + encodeURIComponent(context); var alertOptions = { height: 600, width: 800 }; Xrm.Navigation.openAlertDialog({ text: "<iframe src='" + url + "' width='100%' height='100%' frameborder='0'></iframe>" }, alertOptions);
Option D: Embed the app on a page as a FastTab.
Option E: Create a Power Automate flow that sends an email with