Skip to main content

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 create graphical email messages. It allows you to send personalized emails based on customer's journey or product-related literature to prospects and customers. You can perform events based on triggers. It also allows you to create marketing pages and distribute surveys to gather feedback and improve products/services and improve customer experience.


Dynamics 365 Sales

helps in managing an organization's sales lifecycle from leads to invoicing. You can manage business development activities like lead management and qualification, opportunity management, quote generation, order management, and invoicing.


Dynamics 365 Project Service Automation

helps you understand and document customer needs and quote projects with Schedule, Scope, and Cost. You can plan resources required based on their skillset and assign them to projects. Build a detailed Work Breakdown Structure (WBS) / Schedule to provide a thorough project timeline to project managers, teams, and clients. You can keep track of project status and decide the next move towards project success.

Community portal

A community portal leverages peer-to-peer interactions between customers and experts to organically grow the catalog of available knowledge from knowledge-base articles, forums, and blogs as well as providing feedback through comments and ratings.


Comments

Popular posts from this blog

How to Use Batch to call SharePoint Rest API in PnP-JS

Using Batch in PnP-JS import { sp } from "@pnp/sp/presets/all"; import { dateAdd } from "@pnp/common"; const batch = sp.web.createBatch(); var ListsArr = ["Admin_Test", "Test_attch","TestCopy"] ListsArr.forEach((list)=>{ sp.web.getList(`sites/MyTeamSite/Lists/${list}`).items.inBatch(batch).usingCaching({ expiration: dateAdd(new Date(), "minute", 2), key: `cache_${list}`, storeName: "local" }).get() .then(items1 => { console.log(items1); }); }) // this line executes actual HTTP request to $batch endpoint batch.execute() .then(data => { // at this point all requests will be completed console.log('done'); });

ALM in Power Platform

ALM in Power Platform $SecurePassword = ConvertTo-SecureString 'pw123' -AsPlainText -Force $creds = New-Object System.Management.Automation.PSCredential ('name@email.com', $SecurePassword) $Connection = Get-CrmConnection -OnLineType OAuth -OrganizationName 'orgname' -DeploymentRegion 'Oceania' -Credential $creds $EnvVariableId is the GUID of the environment variable function Update-EnvVariable ( [Guid] $EnvVariableId, [Microsoft.Xrm.Tooling.Connector.CrmServiceClient] $Connection ) { $updateFields = @{ } $updateFields.Add("value", $Value) Set-CrmRecord -conn $Connection -Fields $updateFields -Id $EnvVariableId -EntityLogicalName "environmentvariablevalue" } Update-EnvVariable - $EnvVariableId -$Connection

Get Oauth token in Power Automate

 Get Oauth token in Power Automate