๐ Power Platform 2022 Release Wave 2 at a glance. ๐ย View full resolution here: https://coggle.it/diagram/YxW71HjkbLZ-yi0n/t/power-platform-2022-release-wave-2 ๐ย Learn more details in MS Docs here:https://docs.microsoft.com/en-us/power-platform-release-plan/2022wave2/?WT.mc_id=DX-MVP-5004717 Power Platform 2022 Release Wave 2 mind map
Author: Khoa Nguyen
Dynamics 365 2022 Release Wave 2
๐ย Dynamics 365 2022 Release Wave 2 at a glance. ๐ View the full resolution here:https://coggle.it/diagram/YwZsvuPT1iLZ4GAM/t/dynamics-365-2022-release-wave-2 ๐ Learn more details in MS Docs here: https://docs.microsoft.com/en-us/dynamics365-release-plan/2022wave2/ 2022 Release Wave 2: Dynamics 365 mind map
Power Platform 2022 Release Wave 1 Overview
๐ Power Platform 2022 Release Wave 1 at glace. Power Platform 2022 Release Wave 1 Overview ๐ View the full resolution here:https://coggle.it/diagram/Yhv8POhQamMWlz4_/t/power-platform-2022-release-wave-1 ๐ Read more details in MS Docs here:https://docs.microsoft.com/en-us/power-platform-release-plan/2022wave1/
Enable Choices Column / Multi Select Optionset in Power Apps Portal
Choices column is now supported in Portal and is GA in 2021 Release Wave 2 from Feb 15, 2022: https://docs.microsoft.com/en-us/power-platform-release-plan/2021wave2/power-apps-portals/portals-support-choices-multi-select-columns-dataverse However, you may find it not working, and there is no official document about how to enable it. The solution is to create a Site Setting record to enable the feature: Name: Control/EnableChoicesValue: true And … Continue reading Enable Choices Column / Multi Select Optionset in Power Apps Portal
Modern Web Resource Workspace in Dynamics 365 โ Part 2: Declaration Files
With today advances in Front-end framework and tools, we can easily build a web component or application with better usability, manageability, extendibility, scalability, maintainability, and testability which are often lacked in plain HTML, JavaScript development. In this series, I will setup a modern workspace to work with Web Resources in D365 using most relevant technologies: … Continue reading Modern Web Resource Workspace in Dynamics 365 โ Part 2: Declaration Files
Modern Web Resource Workspace in Dynamics 365 – Part 1: TypeScript
Web Resources are essential components when you want to extend front-end functionalities in Dynamics 365 Customer Engagement. Where HTML, CSS, and Images are used to design the view layer facing users, JavaScript is used to implement the logic layer behind the view. Those components are the most common and basic in Web and Front-end development. … Continue reading Modern Web Resource Workspace in Dynamics 365 – Part 1: TypeScript
Hiding Power BI report filter pane from report viewers in Power Apps Portal embedded report
Filter pane is a familiar functionality when building reports in Power BI Desktop and using reports in Power BI Service. Hiding filter pane is often a requirement when you want to prevent users from changing filter conditions and save spaces for visualizations. It is straight forward and easily be done by turning off the filter … Continue reading Hiding Power BI report filter pane from report viewers in Power Apps Portal embedded report
Compare Classic Workflows to Power Automate Flows
This past weekend I was in Amsterdam and presented on the differences between classic workflows and flows in Power Automate. It was such a great event, and a subject dear to my heart.
View original post 55 more words
Power Platform Happy Hour in HCMC
It's on! We are having Power Platform Happy Hour in Ho Chi Minh city. Feel free to join us and Ask - Connect - Share! Saturday 18th May 10AM The Open Space Coffee - 232/13 Vo Thi Sau, ward 7, district 3, HCMC https://goo.gl/maps/jH1wX7Lbgaj5R9is5 #PPHH #HCMC #PowerPlatform #Dynamics365 #MicrosoftFlow #PowerApps #PowerBI
Retrieve Record using Alternate Keys
Instead of retrieve a single record using Entity IOrganizationService.Retrieve(string entityName, Guid id, ColumnSet columnSet); You can easily retrieve the record using its alternate keys if you don't have the id in advance: var keys = new KeyAttributeCollection { { "new_parent", parentRef.Id }, { "new_code", "code01" } }; var request = new RetrieveRequest { ColumnSet = … Continue reading Retrieve Record using Alternate Keys