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

Category: Dynamics 365 CRM

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.

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

Dynamics 365 CE CRM and Power Platform Complete Syllabus

Here is the Dynamics 365 CE CRM and Power Platform Complete Syllabus.

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

(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.

Project Service module features in Dynamics 365 Customer Engagement (CE)

In Dynamics 365 CE, Project Service is used to manage service based projects. The below flow explains how a project service flow looks like. The Steps include are given below. Project Sales Management Project Leads Project Opportunities Project Quotes Project Contracts Owning Company Contracting Unit Cost Currency Sales Currency Billing Method Project Pricelists Transaction Classes…
Read more

How to install Project Service Operation (PSA) in an existing Power Apps environment

If you want to install Project service automation, follow below steps. Step 1 – Subscribe Project Operation trial Navigate to https://dynamics.microsoft.com/en-us/dynamics-365-free-trial/ and scroll down to select Project Operation. Click on Try for free. Validate existing credential or login using existing credential. Click on Continue. It will setup the Project operation. Step 2 – Assign License…
Read more

Retrieve Many-to-Many (N:N) Relationship Records using Web API in Dynamics 365 using JavaScript

The below code can be used when you want to read N:N or many-to-many related records and do some logics for validations. As N:N intersect table cannot be found in Advance Find you can check the name of intersect table from powerapps solution. The below code runs on a command button click and checks if…
Read more

Declare environment variables and use it in Power Automate

You can configure or declare environment variables inside a power apps solution to keep configurable data items or static data items so that you can use the value in other apps such as canvas apps, power automate etc. Here in this post you will come to know how to declare an environment variable and call…
Read more

Chat with others from within Dynamics 365 Model driven apps using MS Teams

Your can now chat with your fellow colleagues and employees being within Dynamics 365 Model-driven apps using Microsoft Teams app. Follow the steps to enable the MS Teams feature inside Dynamics 365 Apps. Step 1 – Enable Teams Configuration Open any model-driven app and click on chat icon from top right corner. It will open…
Read more

How to add products inside an opportunity in Dynamics 365 CE CRM Sales Hub App

In Sales Hub App in Dynamics 365 CE/CRM Sales Life Cycle, Opportunity management is an important concept. In Opportunity, you can associate products with quantities the customer asked for. In this post you will know how to add products into an opportunity record. First open the Opportunity record in which you want to add products.…
Read more

Get Client URL in JavaScript for Dynamics 365 CE scripts

To get client URL use below script. It will return the URL like this https://[org].crm.dynamics.com. hope this helps.

Get current user id using JavaScript in Dynamics 365 CE CRM script

To get current user id you can use the following script: This will return GUID with curly braces. To get current user name you can use the following script: To get current user roles you can use the following script: Returns an array of strings that represent the GUID values of each of the security…
Read more

How to display progress bar using JavaScript for Dynamics 365 CE

Sometimes for long waiting scripts takes time to complete the execution. In this type of scenarios it is best practice to show a progress bar to user so that user will wait till the progress bar closes. In Dynamics 365, You can implement progress bar using JavaScript. The following sample method will tell you how…
Read more

Open windows using NavigateTo client API in Dynamics 365 Power apps

If you want to use scripts to open windows from command buttons or events in Dynamics 365 and Power Apps model driven apps use following scripts appropriately. Hope this helps.

Filter lookup with custom condition in JavaScript in Dynamics 365

For some business requirements you need to add some more conditions to filter lookup controls. SO in this post you will see how you can add custom filter conditions. First you need to create a JavaScript web resource and add below code. The requirement you need top add a condition to Account lookup on opportunity…
Read more

Best Dynamics 365 and Power Apps Online Training

Dynamics 365 Training Enroll NOW CE CRM & POWER APPS The trainings are Live online training delivered by MCTs and MVPS ensuring quality training and live project business scenarios. Know Your Trainer : Big demand in market to get jobs JOBS 100% Book your seat for upcoming Training Batch : Call to +91-8328865778 Twitter Youtube…
Read more

Display in-app notification in model driven apps power apps for Dynamics 365

You can display in-app notifications in Dynamics 365. Follow the below steps: Step 1 – Enable Settings for In-app notification Open a model driven app of your choice and click on F12. in console paste the below code and press enter. Make sure to use correct model driven app unique name. Step 2 – Prepare…
Read more

How to check dependencies of a component inside a solution in power apps

To check dependencies of a solution component first you need to open the component inside the solution. select the component and click Show Dependencies. Now it will open dependencies panel. Using which you can understand which other components depends on this component. You can notice the object type to understand component type. Here in our…
Read more

Managed v/s Unmanaged Solution in Power Apps Dynamics 365

Here is the list of differences between Managed and Un-Managed solutions in Power APps. Managed Solution: Completed solution ready for distribution/export, in which the solution components are prevented from being modified in the target environment to which it is imported. Possible to set managed properties, granular levels of rights to change components of the solution…
Read more