Skip to main content
Community site session details

Community site session details

Session Id :

Community blogs

Featured

Latest blog posts

View all
Like (0)
How to View Flow Run History in Power Automate?

 Introduction: In this blog, we will see how to View Flow Run History in Power Automate. Implementation Steps: 1.  Navigate to https://admin.powerplatform.microsoft.com [https://make.powerautomate.com/] 2. Click Manage ...

Ram Prakash 2,287
Like (0)
Built a PowerApps control that shows PDF files saved records in MSCRM/Dataverse

Please find my YouTube Video link for Built a PowerApps control that shows PDF files saved records in MSCRM/Dataverse YouTube Link [https://youtu.be/PJxXvfvtePM] https://youtu.be/PJxXvfvtePMGit Hub Link : https://github.com/rampprakash/dataverse...

Ram Prakash 2,287
Like (0)
"Invalid operation performed" on Merging Account/Contact Record in MSCRM/Dataverse

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 troubleshoo...

Ram Prakash 2,287
Like (0)
Day 23: Creating New Records Programmatically with JavaScript in Dataverse / MSCRM

In this Blog, we will see how to Create New Records Programmatically with JavaScript in Dataverse / MSCRM var record = {}; record.bosch_dayname = "Name of the Record"; // Text Xrm.WebApi.createRecord("bosch_day", record).then( function su...

Ram Prakash 2,287
Like (0)
How to Retrieve Records using FETCHXML using JavaScript in MSCRM or Dataverse

In this blog we will see how to How to Retrieve Records using FETCHXML using JavaScript in MSCRM or Dataverse 1. Prepare FetchXML ( Login to CRM or Dataverse then Go to Advance Find and Frame your Query and Download the FetchXML) 2. Consider am...

Ram Prakash 2,287
Like (0)
Day 22: Fetching Records with Xrm.WebApi.retrieveRecord in Dataverse / MSCRM

 In this Blog we will see how to Use Xrm.WebApi.retrieveRecord in Dataverse / MSCRM Video for your Reference: https://youtu.be/9QHxNtClV-4?si=1vM2lViCY9XngIXW function retreiveRecord(executionContext) { var formContext = executionContext...

Ram Prakash 2,287
Like (0)
Day 11 - Customizing Option Sets Dropdown Fields with JavaScript

 In this Blog, we will see how to Customizing Option Sets Dropdown Fields with JavaScript label1 = formContext.getAttribute("bosch_optionsetvalues").getOption(377870000); label2 = formContext.getAttribute("bosch_optionsetvalues").getOption...

Ram Prakash 2,287
Like (0)
Day 10 - Using JavaScript to Set Field Requirements Dynamically - JavaScript in MS...

 In this Blog, we will see how to Set Field Requirements Dynamically - JavaScript in MSCRM/Dataverse if (formContext.getAttribute("bosch_booleanfield").getValue() == true) { formContext.getAttribute("bosch_enabledisablefield").setReq...

Ram Prakash 2,287