Tag: Javascript

  • Dynamics 365 Shared Variables – Share data between Plugins

    Shared variables in Dynamics 365 plugins are essentially global variables that are accessible across all plugin steps and instances. These variables can be used to store data that needs to be shared across different steps of the plugin or across different instances of the same plugin. Using shared variables in…

  • Dynamics 365 Language Codes

    List of supported languages and their LCIDs for Dynamics 365. Language Code Description (informative) BCP 47 Code 1025 Arabic – Saudi Arabia ar-SA 1026 Bulgarian bg-BG 1027 Catalan ca-ES 1028 Chinese – Taiwan zh-TW 1029 Czech cs-CZ 1030 Danish da-DK 1031 German – Germany de-DE 1032 Greek el-GR 1033 English…

  • Dynamics 365 – Retrieve Multiple Records with WebApi and JavaScript | xrm.webapi.retrieverecord

    The Xrm.WebApi in Dynamics 365 facilitates interaction with the platform through web services. Its retrieveMultipleRecords function retrieves a collection of records in a single API call, enhancing efficiency. This method requires the entity logical name and an OData query as parameters, allowing for filtered data retrieval. Upon execution, it returns…

  • Dynamics 365 – Hide/Disable/Edit Business Process Flow Fields using JavaScript

    In Dynamics 365, Business Process Flow attributes are just like Form attributes. You can use most of the controls in the same way as you normally do for Form attributes. Let’s look at the most common ones together. Get Business Process Flow attribute control using Javascript To get attributes Add…

  • Dynamics 365 – Call Power Automate Flow from JavaScript

    In this post I will show the steps to call Cloud(Power Automate) flow from Javascript. I will send a JSON request body to my flow and get a JSON response body back. We will do that in 3 simple steps. Let’s start. Step 1 – Create a Power Automate Flow…

  • Dynamics 365 – How to Show/Hide Sections and Form tabs

    Just like attributes, tabs and sections are also controllers of the forms in Dynamics 365. You can apply same logic to show and hide those controls by using Javascript. For the tabs; you need to know unique name of the tab you are going to show/hide.For the sections, you need…