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
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:
In this Video we will see how to Working with Lookup Fields in Javascript (MSCRM or Dataverse Environemnt)
Introduction:
In this blog we will see how to Validating Form Fields using JavaScript
function validateDateField(executionContext) {
var formContext = executionContext.getFormContext();
if (formContext.getAttribute("bosch_destinationdate").getValue() != null &&
formContext.getAttribute("bosch_sourcedate").getValue() != null) {
if (formContext.getAttribute("bosch_destinationdate").getValue() < formContext.getAttribute("bosch_sourcedate").getValue()) {
var alertStrings = { confirmButtonLabel: "Yes", text: "Destination Date Should be Greater", title: "Date Alert" };
var alertOptions = { height: 120, width: 260 };
Xrm.Navigation.openAlertDialog(alertStrings, alertOptions).then(
function (success) {
console.log("Alert dialog closed");
},
function (error) {
console.log(error.message);
}
);
}
}
}
Introduction:
In this blog we will see how to enable Asynchronous Operation in MSCRM or Dataverse Environments.
Implementation Steps:
1. Navigate to https://admin.powerplatform.microsoft.com/
2. Click on Environments
3. Open the Environment where you want to run your plugins or workflows
4. Click Edit
5. It will prompt a PopUp --> Scroll to the Last
6. Enable Administration Model and Enable Background Operations
That's it
Introduction:
I have created a view on how to import
data from excel to multiple tables in Canvas PowerApps
Implemented Steps:
1.
Created 2 tables
2.
Created Look Up (Related between 2 tables)
3. Export Excel from Advance Find
4. Update the Sheet and Update the Another Sheet based on the Look which you created from Point 2.
Introduction:
In this Blog we will see how to Enable COPILOT in Canvas PowerApps
Implementation Steps:
1. Navigate to https://admin.powerplatform.microsoft.com
2. Select the Respective Environment where you want to Enable COPILOT
3. Open the Environment
4. Click Settings on TOP --> Select Product --> Select Feature
5. You will see an Option Called COPILOT Enable the Option
6. Click Save
7. Now go to https://make.powerapps.com
8. Click Apps at the Left Side
9. Select New and Select Blank Canvas APP
10. Once the App Opened --> Click Settings from the top and Click Upcoming Features and Turn On COPILOT COMPONENTS
11. Once Done Click INSERT and You will See the COPILOT OPTION ENABLED
Note:
Current its based on the REGION Specific
Introduction:
In this Blog we will see how to use Delete operations in Microsoft Dataverse or MSCRM
Implementation Steps:
As I mentioned in my Previous Blog you can able to follow how to use Dataverse Connection with Console Application.
In this Blog we will see how to use Delete Operation in Dataverse
Copy and Paste the below Code for Delete Operations
CrmServiceClient service = new CrmServiceClient(connectionString);
service.Delete("account", new Guid("a4cea450-cb0c-ea11-a813-000d3a1b1223"));
"account" --> Entity Logical Name
"a4cea450-cb0c-ea11-a813-000d3a1b1223" --> GUID of the Record to Delete
Introduction:
In this Blog, we will see how to use Update Operations in Microsoft Dataverse or MSCRM.
Implementation Steps:
As I mentioned in my Previous Blog you can able to follow how to use Dataverse Connection with Console Application.
In this Blog we will see how to use Update Operation in Dataverse
Copy and Paste the below Code for Update Operations
Entity updateAccount = new Entity("account");
updateAccount.Id = new Guid("e0385c7b-8b32-ee11-bdf4-002248d5d764");
updateAccount["name"]= "Updated from Console Application";
service.Update(updateAccount);
"account" --> Entity Logical Name
"e0385c7b-8b32-ee11-bdf4-002248d5d764" --> GUID of the Record to Update
"name" --> Field Name to Update
"Updated from Console Application" --> Values to be Updated
Introduction:
In this Blog we will see how to use Host in Canvas PowerApps
Implementation Steps:
In Canvas PowerApps there is an Option Called Host which Contains
1. BrowserUserAgent : This Will Show the User's Browser Agent
2. OSType : Type of OS
3. Session ID: Current Session ID
4. Tenant ID: Tenant id (Environment ID)
That's it
Introduction:
In this Blog, we will see how to share Canvas PowerApps in Power Platform.
Implementation Steps:
1. Navigate to https://make.powerapps.com
2. Click Apps at the Left Side
3. Select the Apps which you want to Share
4. Now Click On Share
5. Input the Name
6. Once User Added then Select weather the User Can be Co-Owner or not
7. If Co-Owner Select the Check Box at the Right Side Form
8. Now Click Share
That's it
Please find my YouTube Video link for Built a PowerApps control that shows PDF files saved records in MSCRM/Dataverse YouTube Link Git Hub ...