-
Continue reading →: C# Console | Authenticate to MFA enabled environment | Interactive flow
In one of my past articles, (Different ways to connect/authenticate Dynamics 365), I explained how to authenticate to your Dynamics environment using the connection string approach in a C# console application. While this approach works well for non-MFA-enabled authentication, it does not work for environments where MFA is enabled. In this…
-
Continue reading →: Power Pages: Auto-Populate ‘Contact’ Lookup with Logged-In Portal User
In this beginner’s guide to Power Pages, let’s learn how to automatically populate a Contact lookup field with the currently logged-in Portal User. In my website, there’s a Subscription webpage featuring a basic form named Subscription. This form includes a ‘Contact’ lookup field, and I need it to automatically populate…
-
Continue reading →: Power Pages | Data workspace | How to set Solution
Did you know that you can select a Dataverse solution from the Data workspace ? The tables, columns, and forms you create will be added to the chosen solution. Data workspace left pane settings feature allows you to select any unmanaged solution where changes made in Data workspace get added.…
-
Continue reading →: [Beginner] Display an SVG icon in Canvas App
In this article, let’s learn how to display your favorite SVG icon in the Canvas App’s Image control. SVG defines vector-based graphics in XML format. So to store the XML content I am defining a Named Formula variable svgIcons. Next, we need to get the SVG image XML content from…
-
Continue reading →: The term ‘pwsh’ is not recognized as the name of a cmdlet
If you have encountered the following error ‘pwsh’ is not recognized it’s likely that PowerShell is not installed on your machine. In this article, let’s learn how to fix the ‘pwsh is not recognized’ error by installing PowerShell using the Winget command. Install PowerShell on Windows Machine: 🙂
-
Continue reading →: [Quick Tip] Canvas App | Line breaks
Did you know that you can use Char(10) to create a line break in text controls within a canvas app? Following is an example: Char(10) function adds a line break, so it prints the user’s ‘full name’ and ’email’ on separate lines. Note that, Char(10) returns an ASCII code and…
-
Continue reading →: Azure DevOps | External users unable to access the project
In Azure DevOps, you can add Users from other tenants to your organization by navigating to Organization Settings > Users > Add users. Once added, external user receives an email from AzureDevOps@microsoft.com with the subject, You have been invited to an Azure DevOps project and select Join now. In our scenario, the external…
-
Continue reading →: PCF | Import Solution Failed | Webresource content size is too big
If you are a PCF beginner, please refer to my previous article : Power Apps component framework (PCF) – Beginner guide. Regarding the current blog post, while trying to import a solution with a PCF control, I encountered the error: Import Solution Failed: Web resource content size is too big. Here…
-
Continue reading →: Power Pages | Web templates as components
In my previous article (Make FetchXML Liquid Template Tag reusable), I have explained how to reuse fetchxml liquid template tag using a Web Template approach. In that example, I was displaying all the active Offer records. Above example works great. But what if we need to parameterize the number of…


![[Step by Step] Beginner : Create a PCF control and add it to a custom page](https://rajeevpentyala.com/wp-content/uploads/2024/12/image-49.png)