• May 03, 2023

    Creating a Popup Dialog Window with Custom HTML Form in Dynamics 365 using Xrm.Navigation

    In Dynamics 365, Xrm.Navigation (Client API reference) is used to provide navigation-related methods while writing custom scripts. One of the methods called “navigateTo” is used to navigate to the specified table list, table record, HTML web resource, or custom page. More information on the Microsoft Documentation. https://learn.microsoft.com/en-us/power-apps/developer/model-driven-apps/clientapi/reference/xrm-navigation/navigateto Syntax In this Blog we will focus on […]

    • February 28, 2023

    Filter in expand query of OData (D365 CE)

    Introduction: In this Blog, we will learn how to use filter in expand of OData. Example: Let’s say we have an account with multiple contacts, and we want to filter out only the contacts who have their contact method listed as ‘Email’. How to write API Request: a. You can get Service Root URL from […]

    • October 14, 2022

    How to call Cloud Flow from JavaScript.

    Introduction: -In this blog we are going to see how to call cloud flow from JavaScript.  Use Case-: On clicking the ‘Call Flow’ button, we update the name field of the Accounts table in the dataverse. Steps: –  Creating a button in the Model-driven app:- You can check out the link below to understand how […]

    • July 04, 2022

    How to retrieve data from an sub-grid using JavaScript in D365 CE?

    Introduction In this blog, we will discuss how we can fetch data directly from sub-grid without using FetchXML in JavaScript. It is always easy to fetch the data from the fields on form but what about fetching the data from the sub-grid added on the forms? Here is how we can achieve this : Example […]

    • July 04, 2022

    Newly introduced client script methods for D365 CE

    This blog will talk about the new client script methods that can enhance UI/UX experience. addOption This method adds an option to your choice/choices control. Example removeOption  Removes an option from a choice/choices control. Example clearOptions  Clears all options from a choice/choices control. Example setFocus  Sets the focus on the control. Example setLabel Sets the […]

    • July 03, 2022

    How to lock fields on editable grid in D365 CE?

    Introduction: Recently I got a situation where I need to lock the fields in editable grid. I tried to find the solution on internet. I found a suggestion as to use business rule having scope to “Entity”. But it did not worked as it was locking the fields on forms also. Then I created another […]

    • April 07, 2022

    Create Notes with Attachment using Web API in Dynamics 365

    Create Notes record with Attachment for Contact Entity var note = {}; note.subject = “Notes Subject”; note.notetext = “Notes Text”; note.filename = “FileName.txt”; note.documentbody = “Base64String”; note[“objectid_contact@odata.bind”] = “/contacts(00000000-0000-0000-000000000000)”; Xrm.WebApi.createRecord(“annotation”, note).then( function success(result) { alert(“Success”); }, function(error) { alert(error.message); }); Note:- While setting object ID or regrading lookup we have to specify entity name with […]

    • April 07, 2022

    How to show icons on Dynamics 365 Table View

    Introduction : This blogs will guide us on how to show icons on the view for the selected Table. Step 1: Open Power Apps and click on Solutions. After selecting the solution, click on Add existing and select Table to show icons on the selected Table. Step 2 : Before adding SVG icons you first […]

    • March 14, 2022

    Create Parent – Child Record in Single D365 Web API Request

    POST request is used to create a record, So we’ll use POST request to create Parent – Child record. Select the POST request, Set the Dynamics API URL and entity set name in the header. 1.1 Create a Contact Entity Record with New Parent Account Record  To create Parent Account Record, Use Relationship’s Referencing Entity […]

WANT QUICK D365 IMPLEMENTATION?

Let started with our D365 Quickstart package and get onboard within 7 days!

I'M INTERESTED!
© Copyright 2024 Nebulaa IT Solutions LLP. All Rights Reserved.
Download
Brochure