
Arun Potti » Microsoft Dynamics 365
476 FOLLOWERS
Hi, I'm Arun Potti. I am presently working as a consultant in Microsoft. Having 10+ years of experience in Asp.Net, C#, Microsoft Dynamics CRM 2011, 2013, 2015,2016 and Dynamics 365. I am from Visakhapatnam, Andhra Pradesh and staying in Hyderabad. Completed MCA from Noble Institute of Science & Technology (Andhra University), Andhra Pradesh. I am certified in Microsoft Dynamics CRM,..
Arun Potti » Microsoft Dynamics 365
3d ago
A new feature has been released in Microsoft Power Apps to Clear all objects in the Solution, while adding the existing Table’s components. By default, when we add an existing Table in the solution, we can see the list of all objects selected. On click of Clear all objects, all the selected objects will be ..read more
Arun Potti » Microsoft Dynamics 365
1M ago
I got the below error message while testing a scenario in Power Automate. The ‘inputs.parameters’ of workflow operation ‘Create_Credit_Memo’ of type ‘OpenApiConnection’ is not valid. Error details: The API operation ‘CreateRecord’ requires the property ‘item/arun_name’ to be a string of maximum length ‘100’ but is of length ‘104’. By looking at the error, we can ..read more
Arun Potti » Microsoft Dynamics 365
1M ago
I have created a Power Automate Flow on Create of Order Product and on creation of Order Product for an Order, it did not trigger the Flow and got the below error. Followed the below steps and resolved this issue. Step 1: Clicked on go to the trigger. Step 2: Saw the below Error and ..read more
Arun Potti » Microsoft Dynamics 365
2M ago
We got an issue in the Production environment, where the Power Automate is not sending the reminder emails to the Contacts and got the below error in it and it failed the PA. Http request failed as there is an error: ‘Cannot write more bytes to the buffer than the configured maximum buffer size: 104857600 ..read more
Arun Potti » Microsoft Dynamics 365
4M ago
Got the below error while opening a Tool in the XrmToolBox. An error occured when trying to display this tool: Could not load file or assembly ‘XrmToolBox.PluginsStore, Version=1.2022.10.58, Culture=neutral, PublicKeyToken=null’ or one of its dependencies. The system cannot find the file specified. Followed the below steps and resolved this issue. Step 1: Go to the ..read more
Arun Potti » Microsoft Dynamics 365
5M ago
I was getting the below error after opening the Power Automate. There’s a problem that needs to be fixed to trigger this flow. To see more details, open Flow checker. Followed the below steps to resolve this issue. Step 1: Clicked on the Flow checker to see the Errors. Step 2: As per the error, there ..read more
Arun Potti » Microsoft Dynamics 365
5M ago
It is quite common requirement to get the Dataverse Table first row’s information from the List rows in the Power Automate. In this article, will explain about the same. Scenario: Get the list of all contacts which has Email address and show the Contact’s first row details (contactid, fullname and emailaddress1). Follow the below steps ..read more
Arun Potti » Microsoft Dynamics 365
7M 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 » Microsoft Dynamics 365
7M 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 » Microsoft Dynamics 365
8M 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