Category Archives: Dynamics 365

Check Parent Entity Name From Child entity form D365 CE

Requirement Add validation on child entity form based on parent entity. Details Sometimes we want to check name of the parent entity in the child entity quick create form for validation. We can use JavaScript for this validation. For the demo let’s say when someone will try to create contact record from subgrid under Account we want to display a… Read more »

Fetching incremental data from Navision for D365 CE

Requirement Let’s say we want to fetch incremental data from BC for CRM using Kingswaysoft. Details While working with CRM and BC integration using Kingswaysoft, let’s say we want to get incremental data from Navision, for example records modified in last 2 minutes or so. In that case we need to have a datetime field in the NAV table which… Read more »

Overcome MultiCurrencyPlugin Issue D365

Problem The currency of the record does not match the currency of the price list. Details We have some custom workflow process which generates sales order which create sales order from customer asset. We suddenly started getting issue in sales order creation. When I started troubleshooting I found this error is generated by MultiCurrencyPlugin While troubleshooting I checked all the… Read more »

Enable Dynamics 365 2023 release wave 1

Recently Microsoft released plan for 2023 release wave 1, you can refer details for the release plan from https://learn.microsoft.com/en-us/dynamics365/release-plan/2023wave1/. This plan help you to know what are the new features planed during this wave release. Today we can enable early access to 2023 wave 1 to our demo environment (not recommended for the production). If you are not aware how… Read more »

Syncing product from Quotes to Opportunity

Requirement Quote product should be synched to opportunity when quote is activated. Implementations In traditional sales life cycle we create quote from opportunity which inherit all the opportunity data as well as products from opportunity. but sometimes while working on the quote negotiations with the customer some information can be updated on the quote products or may new product is… Read more »

Embedded Canvas app Security- Quick Tip

Problem Embedded Canvas app not loading Details Recently some of the user reported that they are not able to use Canvas app which is embedded on the sitemap. While using embedded canvas we need to consider following User have all the required permission on the used entities Depending on what your app is doing we need to provide all the… Read more »

Filtering Gallery using Radio Button

Requirement Implementing Gallery data filtering using radio button. Details let’s say we have requirement to filter gallery data based on the selection of the radio button like below To implement filter, I am using collection here and Dataverse Account entity as data source where I have records of different types (using Relationship Type attribute for customer category) so first let’s… Read more »

Show ‘Create Document’ on Active Quotes only using Power Fx

Requirement Only show ‘Create Document’ button for Active Quotes. Details While working on the Dynamics 365 Sales implementation we mostly get these type of requirement where we want to show/hide button based on the entity status. We can use Ribbon Workbench and apply value rule to our button to hide and show it but here case is different as this… Read more »

Hide Create Document button

Requirement Hide Create Document (Document CorePack) button from opportunity entity. Details Create Document button is added by Document CorePack addon to the entities, but sometimes we want to hide this button for specific entities for example let’s say we want to hide this in the opportunity entity. If you will try to find this button using Ribbon Workbench you won’t… Read more »

Deactivate Child Records using plug-in

Requirement Deactivate child records using 1:N association using plugin. Details Sometimes we want to deactivate/activate records based on the Parent record deactivation/activation. We cam achieve this requirement writing plugin on the update of the parent entity where we can check statecode value wheather it’s 0 or 1 (Most of the activities have two states 0- Active, 1- Inactive) but we… Read more »