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

Blog

Excel Operation Power Automate Get Records from Excel and Update in Dataverse

Here you will know how to extract records from an excel and insert records into Dataverse table. Follow the below steps. Step 1 : Prepare Excel Sheet with Table Insertion First you need to open the excel with data and insert a table to encapsulate the total record with header row. Now save the excel…
Read more

Sample code Console App for Dataverse Dynamics 365 Power Apps

Console App Sample code.

Sample JavaScripts for Dynamics 365 CE or DataVerse Power APps

Dynamically Add event handlers in Dynamics 365 Form Scripts. Take a look of all code : https://docs.microsoft.com/en-us/power-apps/developer/model-driven-apps/clientapi/reference/xrm-webapi https://docs.microsoft.com/en-us/power-apps/developer/model-driven-apps/clientapi/reference Hope this helps

Sample code for Plugin using Plugin Images in Dynamics 365 or Power Apps Dataverse

Here sample code given for Plugin using Plugin Images. Hope this helps.

Sample Plugin Code in Dynamics 365 or Power Apps Dataverse

Here is a simple code of plugin for your reuse. modify the code for your business need. Hope this helps.

Sample Custom Workflow Code Dynamics 365 CE or Dataverse

Here is the Sample Custom Workflow Activities code for your usages. Modify the code as per your business need. Hope this helps.

RetrieveMultiple Plugin Code to Change View using normal view and Advance Find Views in Dynamics 365 power apps

You can use retrievemultiple message if you want to manipulate the records displayed in a view in power apps views or advance find views. The below plugin code will only display competitor relationship type accounts records if the current user is a IT User else it will display all other account records without relationship type…
Read more

Build Online Exam Full Project Canvas Power Apps with PowerFX

Here is this post you will came to know how to build an online Power Apps for online Exams. Follow these steps below. Step 1 – Configure Dataverse First you need to configure tables and columns to store exam and questions in Dataverse. There are three tables required One to store exams, second to store…
Read more

(Solved) Invalid character in field ‘documentbody’: ‘.’, hexadecimal value 0x00, is an invalid character in Power Automate Attachment Note

While working with Outlook attachments to save as note in Dataverse record, you may face below error. Invalid character in field ‘documentbody’: ‘.’, hexadecimal value 0x00, is an invalid character. To solve this follow below solution. In the Document field assign the converted document. Hope this helps.

COE Creator Kit Full Tutorial for Power Apps

COE Creator Kit for Power Apps is a set of re-usable Fluent UI components that you can use in building Custom Pages, Canvas Apps and Themes without writing single line of code. Also this gives your app a consistent look and feel and more productive feature all modern apps need. Watch the video video I…
Read more

Power Automate Flow not running Dataverse trigger

if you have created a Power automate flow with Dataverse connector then you feel the flow will not run. Follow the below solution to make it work. Solution Go to https://admin.powerplatform.microsoft.com/ and select Environments. From the environment list click on an Environment and then click on Edit. (Do not click Settings) In the next Edit…
Read more

Add FluentUI Datalist grid in Canvas Power Apps or Custom Pages with Creator Kit Power Platform

Microsoft Power Apps are a set of robust application development platform which provides maximum flexibility to integrate latest UI and UX trends like Microsoft Fluent UI and material designs with tools. Here in this post we will discuss how to use Fluent UI components like Details List, Dialogs, Panels, Command Bars etc in Power Apps…
Read more

Add JavaScript/jQuery to Power Portal Entity List

In Power portal you can use entity list to display a set of records from Dataverse. If you want to change the style of the list rows and get the each row cell items in JavaScript or jQuery how can you do that. This post will explain a scenario so that you can understand. Business…
Read more

Power Automate Scenarios for assignment practice

Power automate assignments: Business Scenario 1 Configure a flow to available on-demand as a button to send an email to your manager mentioning the below message in email.Dear ,This is to inform you that, due to health issue I cannot come to office. I would like to work from office today. Please find the details…
Read more

Use FormContext and XRM in HTML Web resource in Dynamics 365 or model driven Power Apps

As Xrm.Page and parent.Xrm are deprecated, you have to use FormContext object and Xrm object using a different approach. This approach will only be used when you added HTML web resource inside a table form as a component. Follow below steps. The business scenario is given below: “Display different Notice content using HTML web resource…
Read more

Hide show button on security role using JavaScript and ribbon workbench Dynamics 366 or Dataverse

here you will understand how to use Enable Rule to hide or show command button as per security role of current user. Business Scenario: The command button “Create Vehicle” on Student table form should only be visible for salesperson security role and for other security role it should be hidden. Follow the steps below: Step…
Read more

Synchronous call from JavaScript to Dynamics 365/ Dataverse Web API using XML HTTP

If you want to call Dataverse/ Dynamics 365 Web API using synchronous calls with XML HTTP object with JavaScript then use the below code and update your code accordingly. The below code snippet checks if a matching enrollment record exist for the same student and course then alerts message and restricts save operation. This function…
Read more

Convert Images to Power Apps – How to Demo

You can now convert hand prepared form images to a powerful power apps. Lets take an example of below image with some texts and diagrams . Lets see how you can convert this to power apps. Step 1 – Save your image in your local machine prepare your diagram image and scan it or take…
Read more

Convert Figma UI to Power Apps with easy steps

Figma is a powerful app to create mockup screens and prototypes. Now you can easily create Figma frames UI and convert to power Apps. Follow below steps. Step 1 : Create Figma Frame UI login to figma.com and create a new Figma design file. But before that you need to generate a personal key. Click…
Read more

Create record in Dataverse using Power Automate HTTP action

You can create Dataverse records using HTTP action with Power Automate. Follow the below steps. Step 1 : Create Trigger of your choice Here I have taken Instant trigger and passed a Text type parameter to give account name. Step 2: Add HTTP action and use Post verb to create record Add a HTTP action…
Read more

Show hide sitemap sub-area in model driven power apps as per table privilege

In model driven power apps, a sub-area can point to a table, web resource, custom page, URL link and dashboard. You can hide sub-areas as per the table privilege or miscellaneous privilege. here I explained about hiding sub area using table privilege. Watch the video to know more.

Append v/s Append To in Dynamics CRM/ Dynamics 365 CE/ Dataverse

Append and Append To privileges are very confusing for all. This article will explain you what is the difference between them. Append and Append To generally deals with the entities that are having a one-to-many (1:N) (Parent : Child) relationship or many-to-one (N:1) (Child: Parent) relationship. Basically appending means when you select a lookup value…
Read more

Xrm.WebApi calls as synchronous in Dynamics 365/ Dataverse

By default Xrm.WebApi methods are asynchronous so you may get some issues in your script logic. SO how to make this synchronous? Change the code to use async and await keywords. The sample code given here. Hope this will help.

[Solved] File is in locked state SharePoint while working with power Automate

When you are working with File operation in SharePoint using Power Automate, you might get the FILE LOCK ERRORS. here I explained how to resolve. The below error you may get while moving file, deleting file etc. Resolution The resolution for this is to implement loop to check if the lock on the file is…
Read more

Conditions Branch in Business process Flow (BPF) for Dynamics 365

In Business Process Flow, you can add conditional checks to add more stages or bypass some stages as per business need. Lets take an example. While capturing loan information for a customer, it needs to be checked the loan amount if its greater than 300k then add more stage to capture more information in BPF.…
Read more

Use FetchXML in WEB API using Power Automate with HTTP action for Dataverse and Dynamics 365

In Business scenarios we sometimes require to use Fetch XML to read data from Dataverse or Dynamics 365 CE. In this post you will come to know how to use Fetch XML in HTTP action of Power Automate and call Dataverse or Dynamics 365 Web API end point. Follow below steps. Step 1: Prepare Fetch…
Read more