Posts

Showing posts from May, 2022

GET THE WEB API URL FOR A DYNAMICS 365 ORGANIZATION

Image
In this quick post, we will see how to get the Web API URL for the Dynamics 365 organization . Go to Settings > Customizations > Developer Resources In the Service Root URL, you will find the API URL You can copy this URL and paste it into a browser to get its result Based on your needs, you can get and use the WebAPI URL in JavaScript using the following line of code formContext.context.getClientUrl() + "/api/data/v9.2/ Hope This Helps!

DUPLICATED WORKFLOWS IN DYNAMICS 365 ADVANCED FIND

Image
In this quick post, I'm gonna share a finding about workflows where you will see Duplicated workflows in the Advanced Find result . Open the Advanced Find and search for a specific process, you will get the result with multiple records with the same name; however, if you go to the All Processes view , you will not find these duplicated records Well, these records are not duplicated records of the workflows. So what are they and how they are created? Each time you deactivate and than reactivate a workflow, a new record will be created with Status Draft , which indicates that a reactivation has been done for the workflow If the workflow is deactivated, the status of all the workflow instances returned in the Advanced Find will be Draft If the workflow is activated, only two

ERROR DIALOG IN DYNAMICS 365 JAVASCRIPT

Image
In another posts, we saw how to display a Confirm Dialog in Dynamics 365 using JavaScript and how to display an Alert Dialog in Dynamics 365 using JavaScript In this post, we will see how to display an Error Dialog in Dynamics 365 using JavaScript and what are the different properties that can be set. The error dialog will be used to display an error message on the form errorOptions Contains the different dialog display properties: details Contains details about the error. If specified, the user will be able to click the button Download Log File to download a text file that contains the message specified in this op

ALERT DIALOG IN DYNAMICS 365 JAVASCRIPT

Image
In another post, we saw how to display a Confirm Dialog in Dynamics 365 using JavaScript In this post, we will see how to display an Alert Dialog in Dynamics 365 using JavaScript and what are the different properties that can be set. The alert dialog will be used to display an alert dialog containing a message and a button alertStrings Contains the different dialog display properties: confirmButtonLabel Contains the value that will be displayed for the alert button in the alert dialog. By default it is set to Ok . title Contains the value of the Title that will be displayed in the aler

CONFIRM DIALOG IN DYNAMICS 365 JAVASCRIPT

Image
In another post, we saw how to display an Alert Dialog in Dynamics 365 using JavaScript In this post, we will see how to display a Confirm Dialog in Dynamics 365 using JavaScript and what are the different properties that can be set. The confirm dialog will be used to display a confirmation dialog containing a message and two button. This dialog will have the below different options confirmStrings Contains the different dialog display properties: confirmButtonLabel Contains the value that will be displayed for the confirm button in the confirmation dialog. By default it is set to Ok . cancelButtonLabel