Arun Potti
415 FOLLOWERS
Covers articles about Dynamics CRM 365, written by Arun, who has 11+ years of experience in Asp.Net, C#, Microsoft Dynamics CRM 2011, 2013, 2015,2016 and Dynamics 365, Click Dimensions, SQL Server & Unified Service Desk.
Arun Potti
1M ago
In my previous article, I had explained about Microsoft Dataverse Accelerator Introduction and in this video, will explain about the Installation of the Dataverse Accelerator App. Have a look at the below video. Please like and share your valuable feedback on this video and follow my blog to get my articles to your Inbox. Click on the ..read more
Arun Potti
1M ago
Please like and share your valuable feedback on this video and follow my blog to get my articles to your Inbox. Click on the below image to navigate to my YouTube Channel. Below are my earlier articles that you can have a look. How to get the Database Version of the Dataverse? API playground feature not available ..read more
Arun Potti
1M ago
Sometimes we are required to know the Database version of the Dataverse environment to check for the features which are released or yet to be released. In this article, will explain different ways to know the Database version. Way 1: 1. Navigate to Power Platform Admin Center. https://aka.ms/ppac 2. Click on Environments. 3. Select the ..read more
Arun Potti
1M ago
In my last article, I had discussed about API Playground feature in Dataverse Accelerator App, and I have another environment, where I cannot see this feature. Followed the below steps and resolved the issue. Step 1: Open Power Platform Admin Center. https://aka.ms/ppac Step 2: Click on Environments. Step 3: Select the required Environment. Click on ..read more
Arun Potti
1M ago
The API Playground is a pre-authenticated software testing environment designed to enable creators to interact swiftly and efficiently with the Microsoft Dataverse Web API. This web application facilitates developers in experimenting with various API endpoints, eliminating the necessity for elaborate setup or authentication procedures. It also provides easy access to available actions and documentation links ..read more
Arun Potti
1M ago
Got the below error while working on Onload of Account record JavaScript in Microsoft Dynamics 365 CE.
Script Error One of the scripts for this record has caused an error. For more details, download the log file.
Web resource method does not exist: onLoad
Session Id: d98076f7-6ddf-4aed-b0cb-8aae086c17c2
Correlation Id: 8bb7a596-38fc-4ba0-b532-9e032d3a2c59
Event Name: onload
Function Name: onLoad
Web Resource Name: ap_account.js
Solution Name: Active
Publisher Name: DefaultPublisherapdevenv
Time: Fri Jul 19 2024 21:27:49 GMT+1000 (Australian Eastern Standard Time)
I have tried to analyze the ..read more
Arun Potti
1M ago
We might have got a scenario to use the Environment Variable Value in the JavaScript in Dynamics 365 CE.
In this article, will explain about retrieving the Environment Variable current Value using JS.
Follow the below example.
Example: Create an Environment Variable and Show the value on Onload of Account record.
1.Created the below Environment Variable with Current Value.
Copy the Name of the Environment Variable and will use the same in the next step.
2.Below is the code used on the Account.js web resource.
Pass the Environment Variable Name to the function.
GetEnvironmentVariableValue ..read more
Arun Potti
1M ago
We quite often use the alert to display a dialog, which contains a message and a button.
In this article, will explain about the syntax and with an example.
Syntax:
Xrm.Navigation.openAlertDialog(alertStrings,alertOptions).then(successCallback,errorCallback);
Parameters:
Name
Type
Required
Description
alertStrings
Object
Yes
The strings to be used in the alert dialog. The object contains the following values:
– confirmButtonLabel: (Optional) String. The confirm button label. If you don’t specify the button label, OK is used as the button label.
– text: String. The ..read more
Arun Potti
2M ago
I was working on a flow and added a Trigger Condition which has 2 conditions in OR clause.
@or(equals(triggerOutputs()?[‘body/statecode’], 1), greaterOrEquals(triggerOutputs()?[‘body/closeprobability’], 80))
The flow is working as expected with the above conditions.
And then after some days, I added an extra condition in the OR clause as per new requirement.
@or(equals(triggerOutputs()?[‘body/statecode’], 1), equals(triggerOutputs()?[‘body/new_user’], true), greaterOrEquals(triggerOutputs()?[‘body/closeprobability’], 80))
Then the flow stopped working on the new trigger condition (new_us ..read more
Arun Potti
2M ago
There might be a situation where we need to use the flow run URL, to see the Flow Run Status and if it is failed, using this we can easily debug the Power Automate flow.
In this article, will explain how to frame and use the Flow run URL.
Follow the below steps.
Step 1: Created an Instant flow and created the Compose action.
Below is the expression used in the compose action.
concat(‘https://us.flow.microsoft.com/manage/environments/’,workflow().tags.environmentName,’/flows/’,workflow().name,’/runs/’,workflow().run.name)
Step 2: Save the flow.
Step 3: Once it is Saved, Click o ..read more