Please find my YouTube Video link for Built a PowerApps control that shows PDF files saved records in MSCRM/Dataverse YouTube Link
Git Hub Link : https://github.com/rampprakash/dataverse-pdf-display
Power Platform, Microsoft Dynamics CRM 4.0, 2011, 2013, 2015, 2016, D365 CE, C#, ASP.net and MVC, Azure
Please find my YouTube Video link for Built a PowerApps control that shows PDF files saved records in MSCRM/Dataverse YouTube Link
Introduction:
Introduction:
Introduction:
ClearCollect(expenses,
{Item: "Travel", Value: 100},
{Item: "Food", Value: 300 },
{Item: "Hotel", Value: 895 },
{Item: "Hotel",Value: 1300},
{Item: "Accessories", Value: 50},
{Item: "Flight", Value: 800}
);
"Count Rows : "& CountRows(expenses)
"Average : "& Average(expenses,Value)
"Max : "& Max(expenses,Value)
"Min : "& Min(expenses,Value)
"Count Rows : "& Sum(expenses,Value)
This is how we can easily configure the Expressions in PowerApps
Introduction:
Introduction:
In this blog, we will explore how to resolve the Account/Contact merge issue in Microsoft Dynamics CRM / Dataverse. We will identify the possible causes behind the error "Invalid operation performed", analyze the troubleshooting steps, and provide solutions to successfully merge records without issues.
Navigate to your CRM/Dataverse environment.
In this case, selecting Account to merge records.
Open the Model-Driven App where the account records are located.
Select two records to be merged.
Click Merge on the Home Page.
During the merging process, the issue occurs.
Upon checking the error in the Console, the following error is displayed.
Follow the steps below to resolve the error:
Go to https://admin.powerplatform.microsoft.com
Select Environments.
Open the environment where the error is occurring.
Click Settings.
Search for Privacy + Security.
Under Allowed MIME Types, enter application/json.
Click Save to apply the changes.
var record = {};
record.bosch_dayname = "Name of the Record"; // Text
Xrm.WebApi.createRecord("bosch_day", record).then(
function success(result) {
var newId = result.id;
console.log(newId);
},
function(error) {
console.log(error.message);
} );
You can pass different parameter based in the "record" to create with field values
In this blog we will see how to How to Retrieve Records using FETCHXML using JavaScript in MSCRM or Dataverse
function retriveRecordusingFetchXML() {
var fetchXml = `
<fetch>
<entity name="account">
<attribute name="accountid" />
<attribute name="name" />
</entity>
</fetch>`;
var encodedFetchXML = encodeURIComponent(fetchXml);
var fetchXmlRequest = "?fetchXml=" + encodedFetchXML;
Xrm.WebApi.retrieveMultipleRecords("account", fetchXmlRequest).then(
function success(result) {
for (const record of result.entities) {
var name = record.name;
}
},
function (error) {
var alertMessage = { text: error.message };
Xrm.Navigation.openAlertDialog(alertMessage, null);
}
);
}
In this Blog we will see how to Use Xrm.WebApi.retrieveRecord in Dataverse / MSCRM
function retreiveRecord(executionContext) {
var formContext = executionContext.getFormContext();
var getCurrentRecordid = formContext.data.entity.getId();
getCurrentRecordid = getCurrentRecordid.replace("{", "").replace("}", "");
Xrm.WebApi.retrieveRecord("TABLENAME", getCurrentRecordid , "?$select=fieldname1,fieldname2").then(
function success(result) {
console.log(result);
// Columns
var bosch_dayid = result["fieldname1"];
var bosch_dayname = result["fieldname2"];
},
function (error) {
console.log(error.message);
}
);
}
Please find my YouTube Video link for Built a PowerApps control that shows PDF files saved records in MSCRM/Dataverse YouTube Link Git Hub ...