Posts

Showing posts from February, 2025

Create Data Package file to Import Or Export CRM records.

Image
  The Microsoft Dynamics CRM 2015 Software Development Kit (SDK) Migration tool is essential for exporting and importing configuration data. It is particularly useful for transferring metadata, customizations, and configurations between environments. Download Link: https://www.microsoft.com/en-in/download/details.aspx?id=44567 After downloading Microsoft Dynamics CRM 2015 Software Development Kit (SDK) unzip and Navigate to MicrosoftDynamicsCRM2015SDK\Tools\ConfigurationMigration. ·        To Open SDK tool MicrosoftDynamicsCRM2015SDK\Tools\ConfigurationMigration\ DataMigrationUtility.exe ·        First, we need to Create Schema. Select on Create Schema and click on continue. ·        It be asked to log in to your source CRM system, Select Display list of available organizations and give your username and passed and logging. ·        Please select your org...

Upload a Word document in a Canvas app using Power Automate and save it to a SharePoint location.

Image
·     Navigate to : https://make.powerapps.com/ ·     Create a Canvas app ·     Open the created app ·     Click -->Insert -->Select Media->Add picture. ·     Add below formula OnSelect property. Set(fileType, Lower(Last(Split( AddMediaButton1 .FileName, ".")).Value)); Set(FileName, AddMediaButton1 .FileName);     Button Event OnSelect : CreateDocumentInSharepoint.Run( FileName, fileType,                 {                     contentBytes: AddMediaButton1 .Media,                     name: AddMediaButton1 .FileName                 }             )   Click on 3 dots Select PowerAutomate Create a power Automate flow with CreateDocumentI...