Performing CRUD Operations in Power Apps using any Data Source – Part IV

In the previous 3 blog parts, we have shown what data source we are using, Data Model View, how to connect to any data source in Power Apps, how to read data from any Data source, how to create records using the Patch method for column of any data type to perform CRUD Operations. In… Continue reading Performing CRUD Operations in Power Apps using any Data Source – Part IV

Performing CRUD Operations in Power Apps using SharePoint List – Part III

In the previous 2 blogs of Performing CRUD Operations in Power Apps using any Data Source (part 1 and part 2), we have shown what data source we are using, Data Model View, how to connect to any data source in Power Apps, how to read data from any Data source. In this blog, we… Continue reading Performing CRUD Operations in Power Apps using SharePoint List – Part III

Performing CRUD Operations in Power Apps using SharePoint List – Part II

In the previous blog part, we have seen how to connect to any data source in Power Apps and perform CRUD operations using SharePoint List as an example. In this blog, let’s see how to read the data from any data source in Power Apps. Reading Data from Data Sources in Canvas Apps: In the… Continue reading Performing CRUD Operations in Power Apps using SharePoint List – Part II

Performing CRUD Operations in Power Apps using Sharepoint List – Part I

Hello PowerApps Users,   PowerApps is in demand nowadays because of its remarking features such as: Speed of app creation. Power Apps accelerate app creation.   Low-code and no-code.  Microsoft and other third-party service integrations.   Business process automation.   Low cost of app ownership.   AI capabilities.   Cross-platform access and ease of deployment.  As a beginner in developing… Continue reading Performing CRUD Operations in Power Apps using Sharepoint List – Part I

Travel Insurance Industry’s Email Problem

The one thing that anyone working in the travel insurance industry will say is difficult to deal with is the number of emails that they receive. They may hit that sweet spot, the magic number of people that is just right for this task, but they may not be aware of a hidden problem that… Continue reading Travel Insurance Industry’s Email Problem

Download Large SharePoint Files From PowerApps Portal

A while ago, one of our clients gave us a vexing problem. They had a lot of rather large files, nearly 1 GB in size, stored in their SharePoint server. They wanted to allow their customers to be able to download these files from the company portal. The portal was the PowerApps Portal. But then,… Continue reading Download Large SharePoint Files From PowerApps Portal

Access SharePoint Online Data Using Postman Part 2

Now, in this blog we will see how to access SharePoint online data.  In this example, we will resize SharePoint Online image by using the Microsoft Graph API via SharePoint using the /_api/v2.0.  We need to specify the size; large, small, and medium; in the request URL to resize the image that would give us… Continue reading Access SharePoint Online Data Using Postman Part 2

Access SharePoint Online Data Using Postman Part 1

In this blog, we will show you how we can interact with SharePoint via Rest APIs and perform actions like adding, updating, deleting, and fetching data using Postman.   We are using two operations SharePoint App Registration and Azure AD app (Graph API).  The important factor is Authentication and Authorization while accessing SharePoint information.  Generate… Continue reading Access SharePoint Online Data Using Postman Part 1

Setting up the Custom Columns of SharePoint with Power Automate Flow and displaying them in Documents Grid in Dynamics 365 for Sales

Many times while uploading the documents of Dynamics CRM to the SharePoint we require that the fields of Dynamics CRM be reflected in the SharePoint column and we could also see the value populated in SharePoint Column in CRM. If you have any such requirements, stay tuned, as this blog is going to cover all… Continue reading Setting up the Custom Columns of SharePoint with Power Automate Flow and displaying them in Documents Grid in Dynamics 365 for Sales

Secure Authentication of SharePoint with PnP Framework with C#(Code)

For a while, we had been using a NuGet Package named SharePointPnPCoreOnline(as shown in below image), which can be used for authentication to SharePoint and other SharePoint Client Side Object Model (CSOM) tasks for managing SharePoint Online Data. This is what we used in our previous blog posts part1 and part2 to connect using clientid/client… Continue reading Secure Authentication of SharePoint with PnP Framework with C#(Code)

Attaching media files from SharePoint to Dataverse Email records

I was wondering if we had any tools, workflow solutions, automatic processes or any connectors in PowerAutomate to support attaching the media files like images or videos from SharePoint folder to email messages before we send the emails. Basically, we wanted to automate the process of attaching the images and videos into the emails which… Continue reading Attaching media files from SharePoint to Dataverse Email records

Append Content Dynamically in Document Template and Generate the Merged Document in Dynamics 365 for Sales and SharePoint

We all have been using Document Templates which are directly available by system and these templates contains static content for all records. What if we need to append some content dynamically in one Word template and need to send the whole document in email attachment? We have come across a solution for this. For one… Continue reading Append Content Dynamically in Document Template and Generate the Merged Document in Dynamics 365 for Sales and SharePoint

Connection to Dynamics 365 and SharePoint Authentication Using ClientId & ClientSecret: Part 2

In our previous post, we saw what needs to be done in Azure and Dynamics 365. Now we will see the code part. Before we start with coding, the below nuget package should be installed. Nuget Package: Microsoft.CrmSdk.XrmTooling.CoreAssembly Reference link: https://www.nuget.org/packages/Microsoft.CrmSdk.XrmTooling.CoreAssembly For installing the package, open the Visual Studio -> Tools -> NuGet Package Manager… Continue reading Connection to Dynamics 365 and SharePoint Authentication Using ClientId & ClientSecret: Part 2

Connection to Dynamics 365 and SharePoint Authentication Using ClientId & ClientSecret: Part 1

I have come across various requirements from clients where it was more feasible to go with creating the C# console application for bulk processing the records in D365 CRM based on complex scenarios like updating the closed case entity records or uploading the files to SharePoint at specific location, or any scenarios that needed custom… Continue reading Connection to Dynamics 365 and SharePoint Authentication Using ClientId & ClientSecret: Part 1

Import data into Dataverse(CDS): Part 3

In the previous blogs, we saw how to import data into Dataverse(CDS) using Excel here and Dataflow here. In this blog we will use a .NET console application to upload data from SharePoint file to Dataverse(CDS). We will need to create SharePoint Document Locations in Common Data Service. Here are the steps. InsertDataToDataverse : This method… Continue reading Import data into Dataverse(CDS): Part 3

Upload document to SharePoint from Microsoft D365 CE using C# Web API & manage SharePoint document metadata

The integration of Microsoft D365 CE with SharePoint has enabled the document management in SharePoint precisely in the form of folders and subfolders, in a structured way. Today in this blog, let’s learn how we can upload the documents in SharePoint from the D365 CE using the Dot Net c# web API code with a… Continue reading Upload document to SharePoint from Microsoft D365 CE using C# Web API & manage SharePoint document metadata