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

Category: Dynamics 365 CRM

Hide button on click in Command bar Dynamics 365 JavaScript

Follow the below method to hid a button after click in Dynamics 365 CE. The scenario is we have a button on contact entity form and when someone clicks the button it should open a confirm dialog and do some operation and at the same time hide the button which initially clicked on the form…
Read more

CRUD operation from HTML Web resource using javascript in Dynamics 365 CE CRM

Achieve CRUD operation using HTML Web resource in Dynamics 365 passing parameter from entity form. use the below JS web resource and HTML web resource. HTML Web Resource hope this helps.

Open HTML web resource on button click and pass data to web resource and display related records in table with paging, checkbox from dynamics 365

You can use JavaScript and Client API to open HTML web resource from Dynamics 365 Forms and pass data parameters to the web resource, read the parameter and fetch records using fetchXML from javascript in web resource. The below screenshot shows how the html web resource looks like when button is clicked. Watch video below…
Read more

New feature for Advanced Find in Power Apps, Now enjoy new UI for advanced find in Dynamics 365

First navigate to https://admin.powerplatform.microsoft.com/environments and then select correct environment. Now you will see an Update section. By default the 2022 release wave 1 is off. click on Manage. In the next side panel click on Update now. Note that the updates cannot be rolled back. If you want to see the new features which are…
Read more

Get Power Platform 2022 Wave 2 Release plan document free

Microsoft planned to release a lot of power feature inside power platform bundle. To go through all features navigate to the below address. https://docs.microsoft.com/en-us/power-platform-release-plan/2022wave1/index Download Release PDF Here : https://go.microsoft.com/fwlink/?linkid=2184918 For Wave 2, 2022 release plan navigate to below address: https://docs.microsoft.com/en-us/power-platform-release-plan/2021wave2/ Download PDF : https://go.microsoft.com/fwlink/?linkid=2167228 Hope this helps.

Dynamics 365 Release Plan Wave 1, 2022 Documents available here

If you want to read complete release notes of feature which are part of 2022 Wave 1 release of Dynamics 365 then follow these steps. Navigate to https://docs.microsoft.com/en-us/dynamics365/ Then click on menu sub link Release Plan. Now you will see all release plans you can get. Click on Dynamics 365 2021 release wave 1. If…
Read more

Restrict Users in BPF

Restrict Users in BPF using workflow.

Merge duplicate records into one record in dynamics 365 CE – decide for merging

While working with dynamics 365 sometimes we face with duplicate records and we need to decide whether we will merge the new field information with existing record. Watch the video to learn more about merging. hope this helps. Dynamics 365 CE Functional Training Core Modules Sales, Marketing, Services, Field Service, Project Service Automation Configurations and…
Read more

Early Binding v/s Late Binding in Dynamics 365 Custom code

While writing custom code using dot net for dynamics 365 CE we can write code either using early-binding or late binding. There are many advantages and disadvantages in both lets look both and decide which one you can use. Late Binding In late binding we do not need to do entity class generation process. The…
Read more

Playbooks in Dynamics 365 CE Sales App

Playbooks feature can be used to automate the sales processes or events in the Dynamics 365 CE without knowing Dynamics 365 CE customizations like workflows, plugins, etc. meaning, we can set up automated processes like activities such as Phone Call, Email, Task by simply creating records in the CRM. Learn more about Playbooks such as…
Read more

How to configure a Custom Connector in Power Apps to call third party Web API

Microsoft has 200+ ready-made connectors to connect native and third party applications. But if the application connector is not available then we can build custom connector. The below screenshot shows a list of available connectors in Power Apps some are FREE and some are Premium connectors. Lets take an example of third party WEB API…
Read more

How to dynamically register event handlers in Model driven app forms

Normally we can use Form configuration to attach On Load, On Save, On Change events as given below. But for some business needs if you want to declare the event handlers in code dynamically then use below method. Remember Registering event handlers using code is possible for all handlers except OnLoad, which must be registered…
Read more

Web resource dependencies in Model driven apps Power Apps

Web resources are important components in Power Apps to store JavaScript’s, Images inside Dataverse. You can write JavaScript in web resource so that you can call functions declared for some events like On Save, On Load etc. The column must be represented by a control on the form to be used in a web resource.…
Read more

Automatic record create and update in customer service in dynamics 365 CE

Customer Service automatic record creation snapshots. Creating a case with email id. Create Automatic record create and update step. define activity type as Email and queue as Support Queue add rule item. add condition row as subject contains issue. save and open power automate for action. power automate actions defined activate create rule. send email…
Read more

Call Power Automate using JavaScript from Dynamics 365 Forms

In this post I will explain about the steps to call Power Automate from Dynamics 365 JavaScript. Let us take a scenario, I want to send a PDF with Account information when an account is created in the system using JavaScript. For this follow below steps: Step:1 – Configure Power Automate Open Power Apps solution…
Read more

Working with Day, Month, Year, Hour, Minute, Second, and Weekday functions in Power App

We can use PowerFX to use the day, month, year, hour, minute, second and weekday concepts in our Power Apps. Lets see in details. Day PowerFX Day PowerFX returns the day component of the current time and date. Syntax : Day(Now()). This will give you the current date part. If the date is 12/21/2021 then…
Read more

Call third party webapi from plugin using secure/ unsecure configuration

Here is the code how to call third party web api.

How to call a child flow from parent flow in Power Automate

Power Automate is more powerful cloud automation system to automate almost every manual task. In this post I will explain about how to call a child flow from parent flow. Remember that only parent child flow is supported for solution aware flows means you need to create flows inside a solution then only you can…
Read more

Create Custom Autonumber Plugin Using Azure SQL Sequence for Dynamics 365 CE

Here in the post Temmy explained how to create auto number code using Azure SQL Sequence. Read the complete blog below.

Update Dynamics 365 records in bulk from Canvas Apps Power Apps using with, ForAll and patch PowerFX function

PowerFX is a most Powerful way to use complex business logics in Canvas Apps Power Apps. When we combine multiple functions then the PowerFX gets more power. In this blog I will explain how we can combine 3 most powerful PowerFX to do complex tasks. Business Scenario: Lets Say I want to have a Button…
Read more

Old client code and its replacement code in Dynamics 365

Here is the list of old client code and its replacement code in Dynamics 365.

Call Custom Action from JavaScript and Run Plugin for custom message in Dynamics 365 or Power Apps

In this post I will tell you how to call custom Action from JavaScript Web Resource and Pass Input Parameters to Custom Action from JavaScript, Also we will see how to call a plugin under same custom action. Watch the video below to learn more practical way otherwise scroll down to read the article. Step:…
Read more

Configure Auto-Numbering in Power Apps/Dynamics 365 without code

In this blog we will see how we can configure auto numbering concept in Power Apps/ Dynamics 365 without writing a single line of code. Login to make.powerapps.com and open the solution with which you are working. Add the table component and inside the table component. Add a new field and select data type as…
Read more

How to implement Sorting and Searching in Gallery in Canvas Apps Power Apps in

In this post we will see how we can implement sorting feature in a gallery control connected to a data source for example dataverse. The below screenshot shows the gallery which is connected to Account Table. Here I want to implement Sorting feature. At the top right corner we have a sorting icon also a…
Read more

How to add required components to a power apps solution

When we work in Power Apps Solutions we add Table components. Add after that we ass Sub-Components of the Table but as sometimes we add relationships and some web resources for the table and when we distribute the solution to other environment then if the target environment do not have required components the import error…
Read more

Add Spacers in Modern Form Designer in Power Apps

In Power Apps Modern Form designer now we can add spacer component to add some space between one field to another field. This option was long awaited option now we can use it. This will give another reason why we will not use Classic Solution editings. But remember the spacer component does not have any…
Read more