Skip to main content

Posts

Showing posts from October, 2021

Dynamics 365 services

 Dynamics 365 Services Dynamics 365 Field Service app you can generate work orders with required products and services to be delivered. Also, it allows you to keep track of supplies (serviceable assets) and their inventory in locations like warehouses, field service vehicles, etc. You can schedule resources on work orders based on their availability and skillset and manage their mobile workforce. Dynamics 365 Customer Service  allows taking support requests from their clients via phone call, email, web, social media, and capture using a case form. You can also keep track of contracts for each client using entitlements. These entitlements can be based on the number of hours or number of cases. Entitlements, along with Service Level Agreements (SLAs), ensure timely service delivery and improves customer satisfaction level. Dynamics 365 Marketing you can define a customer journey that helps in developing and nurturing leads through a personalized experience. With the rich editor, you can

Get Oauth token in Power Automate

 Get Oauth token in Power Automate

Update SPO List Items in batch using PnP PowerShell

Updating SharePoint List Items using PnP-PowerShell $SiteURL="https://saiprasadp.sharepoint.com/sites/TestClassic" $ListName= "Test List" $SPQuery = "<View><Query><Where><Eq><FieldRef Name='Urgency'/><Value Type='text'>High2</Value></Eq></Where></Query></View>" #Connect to PNP Online Connect-PnPOnline -Url $SiteURL -UseWeblogin #sharepoint online pnp powershell get list items $ListItems = Get-PnPListItem -List $ListName -Query $SPQuery #Update items in batch $batch = New-PnPBatch foreach($ListItem in $ListItems) { Write-Host "ID:" $ListItem["ID"] Set-PnPListItem -List $ListName -Identity $ListItem["ID"] -Values @{"Title"="Updated Title1"} -UpdateType UpdateOverwriteVersion -Batch $batch } Invoke-PnPBatch -Batch $batch