Getting the most out of Dynamics 365 Activities
Our client wanted to extend the use of how they were using their Dynamics 365 application. Their sales team actively record appointments in 365. 90% of the time these are in advance of the appointment taking place. So, could that data not be used to better prepare the sales person, before their appointment? Yes, it most certainly could.
Objective
Deliver a daily report to each sales person. The report should list the accounts for whom they had appointments with "tomorrow" alongside the last 4 months of 365 activity notes, and the last rolling 12 months of sales figures.
Step 1 - Return "Tomorrow's" Appointments
- We made use of Microsoft's Web API for Dynamics 365 to return a list of "tomorrow's" appointments for all sales people.
- Created a C# .NET Web API application, hosted internally, to house all queries to the Dynamics 365 application.
- Wrote custom queries, to ask Microsoft's Web API for the data, and returned all appointments, per sales person, as JSON Objects.
Step 2 - Return Sales Data
Dynamics 365 is capable of holding sales data for an organisation. Although, sometimes this is not always practical if there is already another software application in place storing this data. There is an option to push the data from one to the other, but then you have to consider:
- Which software application owns the data?
- How regularly will the data be pushed from one system to the other?
- A potential increase in data storage costs?
Our client, at this time, does not want to push the data into Dynamics 365 (especially as there is no "out of the box" solution to automate this task, at the time of writing this). Therefore, using the Customer Account Number stored against the 365 Appointment; we then ran a query against the sales orders in the ERP system, Sage 1000. Limiting it to return what has been purchased by said Customer in the last 12 months.
Step 3 - Present the data
There are a variety of ways we could have delivered this. However, the client opted for emailing the above in PDF format. This would give the sales person a clear snapshot of each company they had on their books.
Step 4 - Scheduled Job
It was important for the client this data went out each day, without manual / human intervention. The task needed to be automated.This was achieved by extending an in-house custom report processor they have (C# Window Forms Application), to include a new Thread which was automatically kicked off at the designated time, to collect the data and email out.
Going the Extra Mile
There will always be last minute appointments, so how would the sales person obtain the company snapshot for these accounts?We had written the code so it could be re-used within another custom C# MVC web application, used by the sales people to view sales data relevant to their customer accounts. We therefore extended this to include an additional View, so the PDF could be demanded ad-hoc.