Get Multi Select Option Set text values from D365 CRM using C#

Requirement: Get selected Multi select option set text values from CRM using C# Code   C# Code Below method you can use to get the Multi select option set text values public static string retrieveMultiSelectOptionSetTextValues(IOrganizationService service, string entityName, string fieldname, OptionSetValueCollection OptionSetValueCollection) { string SelectedMultipleOptionText = string.Empty; RetrieveAttributeRequest retrieveAttributeRequest = new RetrieveAttributeRequest(); retrieveAttributeRequest.EntityLogicalName = entityName; … Continue reading Get Multi Select Option Set text values from D365 CRM using C#

Use SQL to query Dynamics CRM data (Preview)

With latest releases of Dynamics CRM, A SQL data connection  is available on the Common Data Service. By using this SQL connection,  You can have read only access  to the entity data  You can allow you to write or execute SQL queries against entity table.  You can see entity attribute data of the entity (table) … Continue reading Use SQL to query Dynamics CRM data (Preview)

Solution Checker feature in Power Apps

Hello All 🙂 As you all know, In every project the main expectation from the development team is to deliver the project with best practice development rules. To achieve this, development team should design the applications with best coding development rules (Without any issues & depreciated features).In this process you may need a tool/feature which … Continue reading Solution Checker feature in Power Apps

Customization of Opportunity Close dialog box

Dear All, As you all know when closing the Opportunity Won/Lost you will get Close Opportunity dialogue box and asked you to fill Actual Revenue, Close Date, Competitor and Description details. In earlier versions of CRM there is no option for capture any other relevant details during the Opportunity Won/Lost With new Dynamics 365 2019 … Continue reading Customization of Opportunity Close dialog box

D365 CRM JavaScript example code using Namespace and Comments

if (typeof (Murali) == "undefined") { Murali = { __namespace: true }; } if (typeof (Murali.Lead) == "undefined") { Murali.Lead = { __namespace: true }; } Murali.Lead.Form = { // Logic to run in the form OnLoad event OnLoad: function (executionContext) { //get the formContext var formContext = executionContext.getFormContext(); //get the formType var formType = … Continue reading D365 CRM JavaScript example code using Namespace and Comments