Bhubaneswar, Odisha, India
+91-8328865778
support@softchief.com

Month: June 2022

Power Automate Exception handling using Try Catch Finally

Most of the times when you design a Power Automate flow, you face run time errors due to data issue or environment issues. So this post will explain you how you can handle runtime errors in Power Automate. Follow the below steps to implement TRY CATCH FINALLY BLOCKS in Power Automate. Watch the video or…
Read more

Immersive business process flow in Power Platform configuration and concept

Immersive BPF can be run independently from Power Automate screen. It not required to embed inside model driven apps. Lets explore the steps how to create immersive BPF in power platform. Step 1 : Create a Immersive BPF from power automate portal Open flow website and select correct environment. Click on My flows option. The…
Read more

Change State of record using Plugin in Dynamics 365 CE

To Change record status of dynamics 365 records use below code. Update your code accordingly to suit your business need. Hope this helps.

Status Change Message Plugin Call in Dynamics 365

When you want to call a Plugin on Status change of a record in Dynamic 365 CE then you should use EntityMoniker. Check the code below and update it accordingly and use in your project. IMPORTANT NOTE While registering message in Plugin Registration tool, you have to add SetState and SetStateDynamicEntity messages . Hope this…
Read more

Learn PCF in Power Apps Step-by-Step with basics for beginners in Power Apps

PCF can provide enhanced user experience for the users to work with data on forms, views, and dashboards in Power Apps. For example, a basic ‘Number’ field can be rendered as a Slider control where user can slide to set the value rather than typing. You can learn more theories about PCF here https://docs.microsoft.com/en-us/power-apps/developer/component-framework/overview. But lets see…
Read more

(Solved) msbuild is not recognized as an internal or external command, operable program or batch file while working with PCF

When you run command msbuild you may face below error. ‘msbuild’ is not recognized as an internal or external command,operable program or batch file. Soution To solve this follow below steps. Step 1 – Go to properties of current machine This PC. Step 2 – click on Advanced system settings Step 3 – Click Environment…
Read more

(Solved) ERESOLVE unable to resolve dependency tree while installing a pacakge while working with PCF

While working with PCF you might install Fluent UI but you may face below issues. ERESOLVE unable to resolve dependency tree while installing a pacakge Solution To solve this follow below methods step by step. It means you have dependency conflicts. So try running the following options one by one. 1. Remove node_modules and package-lock.json and then run 2.…
Read more

(solved) Type ‘string | null’ is not assignable to type ‘string’ while working with PCF

While working with PCF you might get the below error. Type ‘string | null’ is not assignable to type ‘string’. Solution Make sure you have a default value for the value you’re trying to get. In this case, I had to default to empty string. Hope this helps.

(Solved) npm ERR! code E404 while working with Power Apps PCF

ERROR While working with command npm install you might be facing the 404 issues as given in below screenshot. Solution inside your PCF folder run the commands. STEP 1 : run below commands to solve this issue. npm config set registry http://registry.npmjs.org STEP 2 : run below command next npm -g install npm STEP 3…
Read more

Restrict/Cancel Save operation conditionally in JavaScript as per Async operations result in Dynamics 365

Sometimes you get requirements where you are doing some validation check in JavaScript by calling XRM.WebAPI or some Async operation and if validation failed, you want to restrict Save operation. If the call code is synchronous then there is no issues. But if the code is asynchronous, you need to take special care otherwise it…
Read more

LDM Learning Download Manager Error MCT

IF you find the error in downloading MCT files using LDM application follow these steps. Step 1 : Login LDM Portal Login to https://learningdownloadcenter.microsoft.com/ Click on FAQ link. Choose LDM and find How to enable the browser download experience? option and inside that click enable browser download experience option. Now you can download with out LDM.

The subscription is not registered to use namespace ‘Microsoft.AzureActiveDirectory’. See https://aka.ms/rps-not-found for how to register subscriptions.

To fix this use Azure Power Shell and hit the command Register-AzureRmResourceProvider -ProviderNamespace Microsoft.AzureActiveDirectory Now the error will go away. Hope this helps

Power Portal WEB API Read, Create, Update, Delete records using Dataverse tables

Step 1 : Create Site Settings Records Step 2 : Create Table Permission, Web Role and Contact Association Create Table Permission Create Web Role Associate Web Role with Contact Step 3 : Create Web Template to add liquid code Create a web template and add below code. Use Microsoft site for full tutorial . And…
Read more