Functional https://dynamics-chronicles.com/ en Dataverse : Get Audit Storage by table https://dynamics-chronicles.com/article/dataverse-get-audit-storage-table <span property="schema:name" class="field field--name-title field--type-string field--label-hidden">Dataverse : Get Audit Storage by table</span> <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><a title="View user profile." href="/user/stephane-pelhatre" lang="" about="/user/stephane-pelhatre" typeof="schema:Person" property="schema:name" datatype="" class="username">Stephane Pelhatre</a></span> <span property="schema:dateCreated" content="2025-11-10T17:13:10+00:00" class="field field--name-created field--type-created field--label-hidden">Mon, 11/10/2025 - 18:13</span> <div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-above"> <div class="field__label">Body</div> <div property="schema:text" class="field__item"><h2>Introduction</h2> <p>Dynamics 365 auditing feature logs changes made to records, allowing you to view the details of those changes at any time. Whenever a record is created, updated, or deleted, the system records this action as an audit log.</p> <p>In a large environment with many tables that have auditing enabled, the audit table can quickly become quite large. While you can view the audit table storage space in Power Platform Admin Center, you cannot view the storage space per table. Dataverse does not directly expose per-table audit storage space in the Admin Center; only the total storage space for audit logs per environment is available.<br /> To address this limitation, there is a solution: Dataverse GetAuditStorageDetails action.</p> <h2>Audit storage consumption in Admin Center</h2> <p>To view Audit log storage:</p> <ol> <li>Go to <a href="https://admin.powerplatform.microsoft.com">Power Platform Admin Center</a></li> <li>Select <strong>Licensing </strong>in the left pane, then <strong>Dataverse </strong>and select your environment<br /> <img alt="Admin1" data-entity-type="file" data-entity-uuid="df219d1e-85ee-4813-9143-05bb90d57665" src="/sites/default/files/inline-images/admin1_0.png" /><br />  </li> <li>Click on <strong>Log </strong>in section <strong>Usage per storage type</strong>.<br /> <img alt="Admin2" data-entity-type="file" data-entity-uuid="8324e5fe-23fc-4900-92e4-1c311661eec3" src="/sites/default/files/inline-images/admin2_0.png" /><br /> <br /> You can view the global audit log storage consumption (517.59 MB in my example) but it's not possible to obtain the storage per table. Note that for Database storage it is possible to view the storage per table.</li> </ol> <h2><span lang="en" xml:lang="en" xml:lang="en"><span><span>GetAuditStorageDetails Action</span></span></span></h2> <p>To view audit log storage per table the solution is Dataverse <em>GetAuditStorageDetails </em>action.<br /> It provides detailed information about the amount of audit storage space used, broken down by table. This feature allows you to identify where storage space is being consumed and manage it effectively.<br /> To call <em>GetAuditStorageDetails </em>action you must be System Administrator or have Audit-related privileges in Dataverse.<br /> You can use the Web API (POST) to call the action:</p> <pre> <code class="language-http">POST [Organization Uri]/api/data/v9.2/GetAuditStorageDetails Accept: application/json Content-Type: application/json; charset=utf-8 OData-MaxVersion: 4.0 OData-Version: 4.0</code></pre> <p>Processing time depends on the size of your environment and the total amount of data in audit logs.<br /> When <em>GetAuditStorageDetails </em>action is triggered for the first time, the process may take some time while the system retrieves audit data for each table. During this time, the response Status field displays 'Pending'. While the operation is running, you will receive a response similar to this:</p> <pre> <code class="language-http">HTTP/1.1 200 OK Content-Type: application/json; odata.metadata=minimal OData-Version: 4.0 { "@odata.context": [Organization Uri]/api/data/v9.1/$metadata#Microsoft.Dynamics.CRM.GetAuditStorageDetailsResponse, "Result": { "Status": "Pending", "AuditStorageDetails": null } }</code></pre> <p>When the process is completed, status is set to 'Completed<strong>'.</strong><br /> Below the result obtained in my environment. Results are stored in <strong>Result.AuditStorageDetails</strong>.<br /> First, we have an array named <strong>Keys </strong>containing the names of all the tables for which the auditing feature is enabled (30 tables in my environment).<br /> Next, we have an array named <strong>Values </strong>containing pairs SizeInBytes/ObjectTypeCode.<br /> Note that we get ObjectTypeCode value (whole number) for each table and not the table display name.<br /> To get table display name from its ObjectTypeCode you need to query the table <em>EntityDefinition</em><code data-end="2093" data-start="2059">.</code></p> <pre> <code class="language-json">{ "@odata.context": "https://organization_URI.crm.dynamics.com/api/data/v9.2/$metadata#Microsoft.Dynamics.CRM.GetAuditStorageDetailsResponse", "Result": { "Status": "Completed", "AuditStorageDetails": { "Count": 30, "Keys": [ "account", "contact", "lead", "systemuser", "msdyn_aimodel", "organization", "product", "role", "salesliterature", "list", "bulkoperation", "report", "goal", "goalrollupquery", "metric", "appsetting", "organizationsetting", "flowmachinegroup", "flowmachineimage", "aipluginoperation", "msdyn_evaluationcriteriaversion", "msdyn_evaluationinputconfig", "msdyn_opportunityresearchindicator", "msdyn_opportunityresearchuserinteractions", "msdyn_fieldservicesetting", "msdynmkt_contactpointconsent4", "msdynmkt_compliancesettings4", "msdynmkt_contactpointsettings", "msdynmkt_purpose", "msdynmkt_topic" ], "Values": [ { "SizeInBytes": 1271, "ObjectTypeCode": 1 }, { "SizeInBytes": 83325, "ObjectTypeCode": 2 }, { "SizeInBytes": 1273, "ObjectTypeCode": 4 }, { "SizeInBytes": 8502538, "ObjectTypeCode": 8 }, { "SizeInBytes": 14983, "ObjectTypeCode": 401 }, { "SizeInBytes": 13528, "ObjectTypeCode": 1019 }, { "SizeInBytes": 1278, "ObjectTypeCode": 1024 }, { "SizeInBytes": 17096, "ObjectTypeCode": 1036 }, { "SizeInBytes": 1278, "ObjectTypeCode": 1038 }, { "SizeInBytes": 1278, "ObjectTypeCode": 4300 }, { "SizeInBytes": 1276, "ObjectTypeCode": 4406 }, { "SizeInBytes": 1276, "ObjectTypeCode": 9100 }, { "SizeInBytes": 1278, "ObjectTypeCode": 9600 }, { "SizeInBytes": 1278, "ObjectTypeCode": 9602 }, { "SizeInBytes": 1276, "ObjectTypeCode": 9603 }, { "SizeInBytes": 18431, "ObjectTypeCode": 10090 }, { "SizeInBytes": 17753, "ObjectTypeCode": 10092 }, { "SizeInBytes": 5487, "ObjectTypeCode": 10110 }, { "SizeInBytes": 5480, "ObjectTypeCode": 10111 }, { "SizeInBytes": 5399, "ObjectTypeCode": 10170 }, { "SizeInBytes": 2080, "ObjectTypeCode": 11115 }, { "SizeInBytes": 1285, "ObjectTypeCode": 11118 }, { "SizeInBytes": 3989, "ObjectTypeCode": 11155 }, { "SizeInBytes": 3989, "ObjectTypeCode": 11157 }, { "SizeInBytes": 49075, "ObjectTypeCode": 11363 }, { "SizeInBytes": 2590, "ObjectTypeCode": 11707 }, { "SizeInBytes": 7412, "ObjectTypeCode": 11765 }, { "SizeInBytes": 12459, "ObjectTypeCode": 11774 }, { "SizeInBytes": 11055, "ObjectTypeCode": 11779 }, { "SizeInBytes": 1303, "ObjectTypeCode": 11780 } ] } } }</code></pre> <p>Let's now write a C# console application to retrieve the top 10 tables that consume the most space in audit logs.<br /> A few explanations about the C# code :</p> <ul> <li>I connect to Dynamics with an App registration. For this I set a connection string with <em>AuthType=ClientSecret</em></li> <li>I create the request to get audit storage details with the following line:<em> var request = new OrganizationRequest("GetAuditStorageDetails");</em></li> <li>I get results from property <em>AuditStorageDetails</em> and store them in a dictionary</li> <li>I build a list containing the data to be displayed and use <em>Take()</em> function to keep the first 10 elements</li> </ul> <pre> <code class="language-cs">using System; using System.Collections; using System.Collections.Generic; using System.Linq; using Microsoft.Xrm.Sdk; using Microsoft.Xrm.Tooling.Connector; namespace AuditStorageDetails { class Program { static void Main(string[] args) { var userAppId = "&lt;appid&gt;"; var secretKey = "&lt;secret&gt;"; var crmUrl = "https://organization_URI.crm.dynamics.com"; string connectionString = $"AuthType=ClientSecret;url={crmUrl};ClientId={userAppId};ClientSecret={secretKey}"; using (var serviceClient = new CrmServiceClient(connectionString)) { var request = new OrganizationRequest("GetAuditStorageDetails"); var response = serviceClient.Execute(request); var result = response.Results["Result"]; if (result == null) { Console.WriteLine("No result returned from GetAuditStorageDetails."); return; } // Get AuditStorageDetails from the Result object var auditStorageDetailsProp = result.GetType().GetProperty("AuditStorageDetails"); if (auditStorageDetailsProp == null) { Console.WriteLine("AuditStorageDetails property not found in result."); return; } // Get the value (dictionary) var auditStorageDetailsValue = auditStorageDetailsProp.GetValue(result); IDictionary auditStorageDict = (IDictionary)auditStorageDetailsValue; Console.WriteLine($"AuditStorageDetails contains {auditStorageDict.Count} entries\n"); // Extract entries into a sortable list var entries = new List&lt;(string Key, long SizeInBytes, object Detail)&gt;(); foreach (DictionaryEntry entry in auditStorageDict) { var auditDetail = entry.Value; var sizeProp = auditDetail.GetType().GetProperty("SizeInBytes"); var sizeValue = sizeProp.GetValue(auditDetail); long sizeInBytes = sizeValue != null ? Convert.ToInt64(sizeValue) : 0; entries.Add((entry.Key.ToString(), sizeInBytes, auditDetail)); } // Sort by size descending var sorted = entries.OrderByDescending(e =&gt; e.SizeInBytes).ToList(); // Display the top 10 Console.WriteLine("Top 10 by audit storage size (in bytes):\n"); foreach (var entry in sorted.Take(10)) { Console.WriteLine($"{entry.Key,-40} {entry.SizeInBytes,15:N0} bytes"); } Console.WriteLine("\nDone."); } } } }</code></pre> <p>Here is the result I get:</p> <p><img alt="console" data-entity-type="file" data-entity-uuid="c1888785-17c8-4de7-92e8-39c62d1c3524" src="/sites/default/files/inline-images/console_results.png" /></p> <p>You can easily adapt the source code if you want to retrieve fewer or more results (for instance top 50).</p> <h2>Conclusion</h2> <p>The <em>GetAuditStorageDetails </em>action retrieves information about Audit storage usage, broken down by table. This allows you to identify where storage is being consumed and manage it efficiently.<br /> Note that <em>GetAuditStorageDetails </em>action only provides information regarding storage usage but it doesn’t perform any cleanup. To delete audit logs you must use <em>DeleteAuditData </em>action or define audit retention policy in Power Platform Admin Center.</p> <p>For a rough estimate of which tables are consuming the most audit storage you can also use the Audit table to get the count of audit records per table.<br /> To do this, you can use the FetchXML query below: it returns the top 10 tables containing the most records in Audit table.</p> <pre> <code class="language-xml">&lt;fetch aggregate="true" top="10"&gt; &lt;entity name="audit"&gt; &lt;attribute name="auditid" aggregate="count" alias="count"/&gt; &lt;attribute name="objecttypecode" groupby="true" alias="table"/&gt; &lt;order alias="count" descending="true"/&gt; &lt;/entity&gt; &lt;/fetch&gt;</code></pre> <p>But since the results are based on a number of records and not a size in bytes, this is only a rough estimate.</p> <p> </p> </div> </div> <div class="field field--name-field-image field--type-image field--label-above"> <div class="field__label">Image</div> <div class="images-container clearfix"> <div class="image-preview clearfix"> <div class="image-wrapper clearfix"> <div class="field field--name-field-image field--type-image field--label-above field__item">/sites/default/files/2026-01/offsite_box_audit.jpg</div> </div> </div> </div> </div> Mon, 10 Nov 2025 17:13:10 +0000 Stephane Pelhatre 865 at https://dynamics-chronicles.com Upcoming Features of Dynamics 365 Calendar: Your Ultimate Solution for Efficient Meeting Scheduling! https://dynamics-chronicles.com/article/upcoming-features-dynamics-365-calendar-your-ultimate-solution-efficient-meeting-scheduling <span property="schema:name" class="field field--name-title field--type-string field--label-hidden">Upcoming Features of Dynamics 365 Calendar: Your Ultimate Solution for Efficient Meeting Scheduling!</span> <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><a title="View user profile." href="/user/maulik-shah" lang="" about="/user/maulik-shah" typeof="schema:Person" property="schema:name" datatype="" class="username">Maulik Shah</a></span> <span property="schema:dateCreated" content="2024-03-07T07:18:36+00:00" class="field field--name-created field--type-created field--label-hidden">Thu, 03/07/2024 - 08:18</span> <div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-above"> <div class="field__label">Body</div> <div property="schema:text" class="field__item"><p><span><span><span><span><span><span>Are you tired of the hassle of coordinating meetings across multiple platforms? </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Do you find yourself constantly switching between calendars to keep track of your schedule? </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Look no further, because Dynamics 365 Calendar is here to revolutionize the way you manage your time and meetings.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>We are thrilled to announce the launch of exciting new features in <a href="https://www.appjetty.com/dynamics365-all-in-one-calendar.htm">Dynamics 365 Calendar</a> that will simplify your scheduling experience like never before. Whether you're a busy professional, a team leader, or an entrepreneur, our latest updates are designed to streamline your workflow and boost productivity.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Global Event, Group Event, and Round Robin Event</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>With Dynamics 365 Calendar, you now have the power to schedule meetings with unparalleled flexibility. Our Global Event feature enables the user to effectively schedule one-on-one meetings without any fuss enhancing the overall productivity and communication of the teams.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Additionally, our Group Event makes collaboration easier. Coordinate meetings with multiple participants effortlessly, streamlining the process and ensuring that everyone is included and informed.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Round Robin Event features empower you to organize meetings based on your preferences. Whether you're arranging a brainstorming session with your team or scheduling interviews with multiple candidates, Dynamics 365 Calendar ensures smooth coordination and optimal time management.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Customizable Views for Enhanced Visibility</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>We understand that every user has unique preferences when it comes to viewing their calendar. That's why Dynamics 365 Calendar introduces customizable Views, allowing you to tailor your calendar display according to your specific needs. Whether you prefer a customer-centric view or want to focus on entity calendars, our customizable options ensure that you have easy access to the details that matter most to you.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Seamless Integration with Leading Platforms</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>Gone are the days of juggling multiple calendars across different platforms. With Dynamics 365 Calendar, you can now integrate seamlessly with popular tools such as Google Calendar, Microsoft Outlook, and Zoom. Whether you're scheduling a client meeting, syncing deadlines with your team, or arranging virtual conferences, our platform ensures precise time slot coordination across all your integrated calendars.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>The sole purpose of creating Dynamics 365 Calendar is to provide innovative solutions that simplify your daily workflow and enhance your productivity. With its latest features, scheduling meetings has never been more efficient or convenient. Experience the future of meeting scheduling with Dynamics 365 Calendar.</span></span></span></span></span></span></p> <p> </p></div> </div> <div class="field field--name-field-image field--type-image field--label-above"> <div class="field__label">Image</div> <div class="images-container clearfix"> <div class="image-preview clearfix"> <div class="image-wrapper clearfix"> <div class="field field--name-field-image field--type-image field--label-above field__item">/sites/default/files/2024-03/UpcomingFeatures_1300x650_0.jpg</div> </div> </div> </div> </div> Thu, 07 Mar 2024 07:18:36 +0000 Maulik Shah 762 at https://dynamics-chronicles.com Functional https://dynamics-chronicles.com/article/upcoming-features-dynamics-365-calendar-your-ultimate-solution-efficient-meeting-scheduling#comments Revolutionizing Business Efficiency: 10 Ways Dynamics 365 Calendar Can Accelerate Your Growth https://dynamics-chronicles.com/article/revolutionizing-business-efficiency-10-ways-dynamics-365-calendar-can-accelerate-your <span property="schema:name" class="field field--name-title field--type-string field--label-hidden">Revolutionizing Business Efficiency: 10 Ways Dynamics 365 Calendar Can Accelerate Your Growth</span> <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><a title="View user profile." href="/user/maulik-shah" lang="" about="/user/maulik-shah" typeof="schema:Person" property="schema:name" datatype="" class="username">Maulik Shah</a></span> <span property="schema:dateCreated" content="2024-01-30T09:03:57+00:00" class="field field--name-created field--type-created field--label-hidden">Tue, 01/30/2024 - 10:03</span> <div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-above"> <div class="field__label">Body</div> <div property="schema:text" class="field__item"><img alt="Dynamics-365-Calendar-Can help-your-business-growth" data-entity-type="file" data-entity-uuid="08dd9e96-61fc-4b63-aed0-a9d9c982cd30" src="/sites/default/files/inline-images/how-microsoft-dynamics-365-can-help-your-business-growth.jpg" class="align-center" /> <p> </p> <p><span><span><span><span><span><span>One of the critical aspects that can significantly impact a company's productivity is scheduling. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Traditionally, manual scheduling processes have been time-consuming and error-prone, leading to operational inefficiencies and missed opportunities. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>However, with the help of Dynamics 365 Calendar, businesses now have a powerful tool to streamline their operations and drive growth. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>In this blog, we will explore ten ways <a href="https://www.appjetty.com/dynamics365-all-in-one-calendar.htm">Dynamics 365 Calendar</a> can revolutionize your business and contribute to its expansion.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>What is Dynamics 365 Calendar?</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>Dynamics 365 Calendar is a solution designed to streamline the process of booking appointments and managing schedules without manual intervention. This innovative plugin offers advanced algorithms and user-friendly interfaces, enabling businesses to automate the appointment booking cycle. Users can set parameters, such as available time slots, appointment duration, and services offered.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>One key feature of this plugin is its ability to sync with existing calendars, ensuring real-time updates and avoiding double bookings. Clients or customers can access the system online, check availability, and book appointments at their convenience, reducing the need for phone calls or email exchanges.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Additionally, automatic appointment scheduling software often comes equipped with notification and reminder functionalities. Users receive automated alerts about upcoming appointments, reducing no-show rates and improving overall efficiency. This technology benefits businesses in various sectors, including marketing, IT, sales, professional services, etc.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>In summary, Dynamics 365 Calendar is a time-saving and efficient solution that enhances customer experience, reduces administrative workload, and ensures optimal utilization of available resources. It represents a significant advancement in managing appointments, fostering productivity, and improving overall service delivery.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Time Savings and Increased Productivity</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>The most apparent advantage of Dynamics 365 Calendar is its substantial time savings. Manual scheduling involves sorting calendars, coordinating with team members, and adjusting for unforeseen circumstances. Automatic scheduling streamlines this process, allowing employees to focus on more critical tasks. Businesses can achieve higher productivity and efficiency by automating repetitive and time-consuming scheduling activities.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>For instance, a retail business with multiple shifts can use automatic scheduling software to create optimized schedules based on employee availability, skills, and business needs. This reduces the time spent on manual scheduling, minimizes errors, and ensures that the right people are assigned to the right tasks at the correct times.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Enhanced Employee Satisfaction and Engagement</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>A well-organized schedule contributes to employee satisfaction and engagement. Automatic scheduling software gives employees more control over their work hours, enabling them to balance their professional and personal lives effectively. The plugin can generate schedules that accommodate individual needs by considering factors such as preferences and time-off requests.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Increased employee satisfaction leads to higher retention rates and a positive workplace culture. When employees feel that their needs are considered and they have a say in their schedules, they are more likely to be motivated and engaged, positively impacting overall business performance.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Minimized Errors and Scheduling Conflicts</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>Manual scheduling is prone to errors, such as double bookings, understaffing, or scheduling conflicts. These mistakes can result in operational disruptions, customer dissatisfaction, and increased employee stress. Dynamics 365 Calendar, on the other hand, minimizes the risk of errors by using algorithms to optimize schedules based on predefined criteria.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>By considering factors like employee availability, skill sets, and business requirements, the software ensures that schedules are accurate and conflict-free. This saves time and contributes to a smoother and more reliable business operation.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Improved Customer Service</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>Effective scheduling is crucial for delivering exceptional customer service. Dynamics 365 Calendar enables businesses to align their staffing levels with customer demand, ensuring enough employees are available during peak times. This leads to reduced wait times, improved service quality, and increased customer satisfaction.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>For example, in the hospitality industry, a hotel can use automatic scheduling software to optimize staff schedules based on room occupancy and event bookings. This ensures the hotel is adequately staffed during busy periods, providing guests a seamless and enjoyable experience.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Real-time Adaptability to Changes</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>In a dynamic business environment, unexpected changes are inevitable. Manual scheduling processes struggle to adapt quickly to unforeseen events, leading to operational inefficiencies. Automatic scheduling software, however, excels in real-time adaptability.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Whether it's an employee calling in sick or a sudden increase in customer demand, the software can swiftly adjust schedules to accommodate these changes. This agility ensures that businesses can respond promptly to challenges and opportunities, maintaining high operational efficiency.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Optimal Resource Allocation</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>Effective resource allocation is a critical element of business success. Dynamics 365 Calendar considers various factors, such as employee availability, skills, and workload, to allocate resources optimally. This results in a balanced distribution of tasks and responsibilities among the workforce, preventing overburdening certain employees while ensuring that all necessary roles are filled.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>For instance, the software can analyze production schedules and employee availability to assign tasks efficiently in a manufacturing setting. This not only maximizes productivity but also prevents bottlenecks in the production process.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Data-driven Decision Making</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>Automatic scheduling software generates valuable data that can be used for informed decision-making. Businesses can gain insights into their operations by analyzing scheduling patterns, employee performance metrics, and other relevant data. This data-driven approach enables organizations to make strategic decisions that align with their growth objectives.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>For instance, an e-commerce business can use scheduling data to identify peak sales periods and allocate additional staff during those times. This proactive approach not only improves customer service but also maximizes revenue opportunities.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Scalability for Business Growth</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>As businesses expand, their scheduling needs become more complex. Manual scheduling processes may struggle to keep up with the increased demands of a growing workforce and evolving business requirements. Automatic scheduling software is designed with scalability in mind, capable of accommodating the changing needs of a growing business.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Whether opening new locations, adding new employees, or expanding service offerings, the software can adapt to the increased complexity and volume of scheduling tasks. This scalability ensures that businesses can continue to operate efficiently and sustain their growth trajectory.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Conclusion</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>In conclusion, automatic scheduling software has emerged as a transformative tool for businesses seeking to enhance efficiency, productivity, and overall growth. By automating time-consuming scheduling processes, minimizing errors, and providing real-time adaptability, this technology contributes to a positive workplace culture and improved customer service.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>From optimizing resource allocation to ensuring compliance with labor regulations, automatic scheduling software offers many benefits. Its data-driven approach enables businesses to make informed decisions while integrating with other systems create a unified workflow.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>In a world where agility and efficiency are paramount, adopting automatic scheduling software is not just a technological advancement but a strategic move toward sustainable business growth. By embracing this powerful tool "<a href="https://appsource.microsoft.com/en-us/product/dynamics-365/biztechcs.all-in-one-calendar?exp=ubp8&amp;tab=Overview">Dynamics 365 Calendar</a>", businesses can propel themselves into a future of streamlined operations, satisfied employees, and delighted customers.</span></span></span></span></span></span></p></div> </div> Tue, 30 Jan 2024 09:03:57 +0000 Maulik Shah 743 at https://dynamics-chronicles.com Functional https://dynamics-chronicles.com/article/revolutionizing-business-efficiency-10-ways-dynamics-365-calendar-can-accelerate-your#comments Seamless Fusion: Enhancing Web Experiences through Dynamics 365 Portal and Customer Insights Integration https://dynamics-chronicles.com/article/seamless-fusion-enhancing-web-experiences-through-dynamics-365-portal-and-customer-insights <span property="schema:name" class="field field--name-title field--type-string field--label-hidden">Seamless Fusion: Enhancing Web Experiences through Dynamics 365 Portal and Customer Insights Integration</span> <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><a title="View user profile." href="/user/maulik-shah" lang="" about="/user/maulik-shah" typeof="schema:Person" property="schema:name" datatype="" class="username">Maulik Shah</a></span> <span property="schema:dateCreated" content="2023-11-17T08:05:23+00:00" class="field field--name-created field--type-created field--label-hidden">Fri, 11/17/2023 - 09:05</span> <div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-above"> <div class="field__label">Body</div> <div property="schema:text" class="field__item"><p><span><span><span><span><span><span>CRM has been a critical component of today's business, which has helped around 70% of businesses get the right customer insights and improve customer experience. If you also want to improve the web experience for your business, then you must create a seamless, customised shopping experience for your customers. This can only be done with CRM solutions like the </span></span></span></span></span></span><a href="https://www.crmjetty.com/dynamics365-customer-portal/"><span><span><span><strong><span><span>Dynamics 365 portal</span></span></strong></span></span></span></a><span><span><span><span><span><span>. To find out more about how you can use CRM for better customer insights and web experience, keep reading!</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Before diving into the blog, let us first understand what is Dynamics 365 customer insights.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>You might have seen or observed most businesses use multiple apps with their data storage systems. AI combines your company's customer data and breaks down data silos with Microsoft Dynamics 365 Customer Insights. This CDP generates multi-dimensional customer profiles and real-time insights from the transaction, behavioural, and demographic data. Making systemic decisions will be considerably simpler as a result. You just start using new technologies and updated data to offer guaranteed customer satisfaction.  </span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Why should you integrate the Dynamics 365 Portal to boost customer insights?</span></span></strong></span></span></span></h2> <h3><span><span><span><strong><span><span>It helps in a comprehensive understanding</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>With the Dynamics 365 portal, you can achieve a complete view of how customers are interacting through the integration of data from Customer Insights and the Dynamics 365 Portal. If you want to understand your customer properly, then you must integrate a good Dynamics 365 portal or CRM to collect useful data about customer behaviours, preferences, and pain points across several touchpoints as a result of this unified perspective. </span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>It supports real-time customization</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>When your data is integrated in real-time, you can provide personalized services relevant to the customer's choice. You don't have to worry about updating, as when users engage with the site, their profiles are updated quickly. This also allows to give specialized discounts, product recommendations, and relevant material because to this responsiveness. </span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Improved marketing campaigns</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>Marketing campaigns are highly-influencing customers these days. If your business also lacks attention, then start developing marketing campaigns that are extremely targeted. Marketers may create content that speaks to consumers' preferences and behaviours as a result of the integration. A customer interested in a certain product category on the portal may receive emails offering related products in an effort to boost the likelihood of conversions.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Smooth customer support</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>Customer support interactions are revolutionized by integrated portals. When they need help, support staff members can consult a comprehensive history of client interactions. Agents are able to recognize issues and offer better solutions more rapidly because to this view with full context. Overall satisfaction is raised by a more seamless encounter with customer service.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>It encourages data-driven decisions</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>Numerous insightful findings are generated by the integration. Through the analysis of consumer </span></span></span></span></span></span>behaviour<span><span><span><span><span><span>, engagement trends, and conversion rates, businesses may optimise their strategies. Decision-makers are empowered to make well-informed choices that improve customer experiences and encourage business growth thanks to this data-driven process.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>It will build strong customer loyalty and trust</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>Consumers appreciate tailored experiences backed by linked data. The ability to provide tailored experiences indicates a deep understanding of their needs. Because of this enhanced engagement, customers feel valued, which encourages loyalty and leads to enduring relationships and repeat business.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Apart from this, it's crucial to follow the best practices while connecting CRM and web experiences. Below, we have listed some of the proven best practices you must consider while integrating the Dynamic 365 portal.</span></span></span></span></span></span></p> <ul> <li><span><span><span><span><span><span>Establish the goals of the integration before proceeding. Whether the integration process is to improve customer experiences, bolster marketing efforts, or optimise support interactions, having well-defined goals will guide the approach.</span></span></span></span></span></span></li> <li><span><span><span><span><span><span>Identify the fields that need to be synced between Customer Insights and the portal. Diagram the data flow to ensure that customer data is accurate and consistent between the two systems. A complete customer view requires the syncing of this data.</span></span></span></span></span></span></li> <li><span><span><span><span><span><span>Use Microsoft's integration tools, such as Power Automate and Power Apps, to create automated workflows. These solutions streamline data transfer, minimising errors and manual interaction between Customer Insights and </span></span></span></span></span></span><a href="https://appsource.microsoft.com/en-us/product/dynamics-365/biztechcs.fc4f9178-20a1-41cf-b408-b617ec828e8f?tab=Overview"><span><span><span><strong><span><span>Dynamics 365 Portal</span></span></strong></span></span></span></a><span><span><span><span><span><span>.</span></span></span></span></span></span></li> <li><span><span><span><span><span><span>Data governance and security are your top priorities as a business owner. In the Dynamics 365 portal, you can assign users to roles and set access rights for safer data access. To maintain customer trust, data protection, and confidentiality is your prime responsibility to carry a long-lasting impression.</span></span></span></span></span></span></li> <li><span><span><span><span><span><span>Extensive testing is required to ensure the integration functions as intended. It is essential for checking the system for multiple conditions and identifying errors and other issues with data syncing.</span></span></span></span></span></span></li> <li><span><span><span><span><span><span>Get accurate data before you begin integration with the system. Keep these things in mind that data should not be duplicate or outdated one. If you want to get unique and useful data, get customers and client reviews to get better responses and make integration worth it.</span></span></span></span></span></span></li> <li><span><span><span><span><span><span>Monitoring and analysis are crucial phases of the integration Dynamics 365 portal. You can do this by installing one monitoring system specific for your business and check on factors such as system responsiveness, data synchronisation frequency, user engagement, and more to adjust the data accordingly and integrate for better results.</span></span></span></span></span></span></li> </ul> <h2><span><span><span><strong><span><span>Conclusion</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>Data integration with CRM is the first step if you want to collect valuable customer insight. With rare and unique information, you can touch the necessary touch points of the clients from a single end profile and deliver a great outcome. Consider the above best practices to get your integration done hassle-free. Did you find this article useful to understand the importance of connecting CRM and web experience? What are your views on getting customer insights and dynamic 365 portal integration? </span></span></span></span></span></span></p> <p> </p></div> </div> <div class="field field--name-field-image field--type-image field--label-above"> <div class="field__label">Image</div> <div class="images-container clearfix"> <div class="image-preview clearfix"> <div class="image-wrapper clearfix"> <div class="field field--name-field-image field--type-image field--label-above field__item">/sites/default/files/2023-11/dynamics%20365%20portal.jpg</div> </div> </div> </div> </div> Fri, 17 Nov 2023 08:05:23 +0000 Maulik Shah 724 at https://dynamics-chronicles.com Functional https://dynamics-chronicles.com/article/seamless-fusion-enhancing-web-experiences-through-dynamics-365-portal-and-customer-insights#comments The complexity trap and why a clean design is a good idea even if "everything works." https://dynamics-chronicles.com/article/complexity-trap-and-why-clean-design-good-idea-even-if-everything-works <span property="schema:name" class="field field--name-title field--type-string field--label-hidden">The complexity trap and why a clean design is a good idea even if &quot;everything works.&quot;</span> <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><a title="View user profile." href="/user/david-uhlmann" lang="" about="/user/david-uhlmann" typeof="schema:Person" property="schema:name" datatype="" class="username">David Uhlmann</a></span> <span property="schema:dateCreated" content="2023-11-10T10:21:13+00:00" class="field field--name-created field--type-created field--label-hidden">Fri, 11/10/2023 - 11:21</span> <div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-above"> <div class="field__label">Body</div> <div property="schema:text" class="field__item"><p>Over the past decade, a recurring phrase I've heard is: <strong><em>"Why replace systems or tools that are functioning well?</em></strong>" The rule of "<em>never change a running system</em>" is often repeated and seems like a golden rule in IT. One potential response to this is described in the concept of the <em>"complexity trap</em>," a phenomenon prevalent especially in the IT industry. For more general information about this phenomenon there are plenty of <a href="https://www.linkedin.com/pulse/complexity-trap-dave-osh">articles </a>out there. In the area of IT, tools offer a huge number of possibilities to "<em>enhance processes</em>" and "<em>automate workflows</em>," ... for example by <em>Power Automate Desktop</em> (PAD) from Microsoft. However, a common scenario unfolds as companies expand through acquisitions, experiencing sustained growth (very often rapid growth). With this expansion, the complexity of IT systems also often rises drastically, setting the stage for the complexity trap.</p> <p>The presence/availability of sophisticated tooling, particularly with low-code platforms like <em>Power Platform</em>, tricks individuals to automate processes and develop applications to solve immediate challenges. Yet, in doing so, there's a risk of losing sight of the overarching enterprise architecture, so the design so to speak. Very often, a group or company finds itself with a multitude of non-connected IT systems, "<em>seemingly</em>" integrated and reported through complex Power BI models that give the illusion of a good design because "<em>it's all in the dashboard</em>". So, you see a number of well-designed dashboards that give a sense of integrity which is not always the case. In reality, a number of sizable legacy applications coexists &amp; the Power BI analyst has to do heavy data manipulation to kind of give the correct figures to management. The addition of more Power Apps and increased automation, <strong>facilitated by tools like Power Automate, doesn't improve </strong>the <strong>situation; instead, can make it worse. </strong>I will explain why:</p> <p>Working within the area of "<em>Power Platform</em>", where rapid app development is doable &amp; done frequently, presents a <strong>dual-edged sword</strong>. While the agility to build apps quickly is advantageous and good for stakeholder and steering board meetings, projects utilizing low-code solutions can inadvertently lead the company deeper into the complexities of the rabbit hole which is the complexity trap. So, pay attention folks! </p> <p>What's sometimes missing is a <strong>well-designed, central architectural design</strong> featuring a unified data layer(s) for all applications—consider, for instance, all CRM systems. This doesn't imply the creation of all-encompassing, multifunctional apps. <strong>Quite </strong>the <strong>opposite </strong>actually..., the recommended approach is typically, "<strong>One app for each business process</strong>." For instance, if you're a manufacturer of car parts with distinct divisions for trucks and personal use cars, both divisions would require separate apps. For example, <em>"part management - trucks"</em> and "<em>part management personal cars</em>", just because the two business lines are too different. However, the important part here lies in having <strong>separate apps</strong>, <strong>not isolated environments </strong>or databases. </p> <p>The pitfall arises when building Power Apps or environments atop<strong> segregated data sources (environments)</strong>, or even Excel sheets. While this may make a quick application and fast time-to-market, it <strong>ultimately plunges</strong> the client deeper into the <strong>complexity trap</strong>. In the short term, the client may appreciate the rapid application deployment, but in the long run, bad consequences may emerge (sooner or later). The crux of the issue is that, eventually, the complexity trap <strong>may hit the company</strong>. Consequently, an organization finds itself grappling with hundreds of applications, data sources, gateways... and so on, very often leading to operational chaos. Suddenly, metrics like "<em>revenue</em>" lose their unique meaning, and "<em>number of leads</em>" becomes three different figures for the same country (<em>All this I have seen when working in financial controlling where the solution always is: build bigger and more complex Excel files to compensate for all the ITs shortcomings</em>). So, let's be better than this and give proper advice to clients.</p> <p>To avoid this, it's important to navigate <strong>against the storm</strong> of <strong>urgency</strong>, making use of available time and budget resources wisely.</p> <p>This is the reason why, whenever I see a situation like this, <strong>I recommend building a clean, well thought, architecture first </strong>with clear visibility of data layers, applications, security, scalability etc. and for each of those parts WHY we need them and where. Secondly, it is crucial to <strong>understand </strong>the <strong>business processes</strong> in detail &amp; <strong>document </strong>them in detail.</p> <p>Is this a painful process? Yes, as it costs more time and money compared to quickly building one or two environments more and more apps in like 2-3 months. Will it help the company grow with their IT architecture in the future and safe money and time then? Absolutely.</p> <p>How do you identify if you ran into this rabbit hole? Well, there is no real answer but there are a couple of <strong>questions/topics </strong>you can ask yourself (not a complete list of course):</p> <ol> <li> <p><strong>Processes</strong>: Everything starts with business processes. Do you have a tool like Signavio or something similar in place with processes documented properly in BPMN 2.0? If not, that might be a bad sign, as very often companies do not do this as they know all the "errors" will come up once trying to formulate and document them. However, this is the starting point for improvements. You cannot improve if you do not know where to improve.</p> </li> <li> <p><strong>System Integration</strong>: How integrated are our IT systems, how much effort do we spend on building and maintaining integrations? Do we have a well-designed, implemented and working integration layer? How easily can data flow between systems? Do we need gateways, and if yes how many?</p> </li> <li> <p><strong>Data Management</strong>: Is there some form of unified data strategy or foundation or is data floating across the organization? Does customer XZY exist one time or three times across different systems?</p> </li> <li> <p><strong>Application Portfolio</strong>: How many applications are in use. Silly question, but the answer can be tricky and can provide some insights. What is the purpose of each application?</p> </li> <li> <p><strong>Technology Stack</strong>: What kind of technology stack is in use, is it standardized and are best practices of the vendor followed? Do you have a lot of custom code development inside your tools to "<em>extend missing capabilities of the tool</em>"? The blueprint in Power Platform is always plugins that are more than 10-20 lines which means the engineer / architect did not understand/miss what a Dataverse plugin is meant for.</p> </li> <li> <p><strong>User Experience</strong>: Are your users happy, or do they complain they have to switch applications for every task?</p> </li> <li> <p><strong>Reporting and Analysis</strong>: How complex is your BI model and how many data sources do you need to join to get insights? How are the insights validated for correctness, if you have many data sources?</p> </li> <li> <p><strong>Maintenance and Upgrade</strong>: How complex is the process of upgrades, did you ever skip updates as they were "<em>too complex</em>"? If yes, think about why this is the case.</p> </li> <li> <p><strong>Scalability</strong>: How quickly can you scale out or scale up (depending on what you need)?</p> </li> <li> <p><strong>Training and Skill sets </strong>(very important): How much time do you need to bring users up to speed inside an application. Blueprint here is always, no insult, SAP R3 that had a huge learning curve.</p> </li> <li> <p><strong>Costs</strong>: Do you think the complexity that you have costs your money already (only direct costs for example double licenses or similar things)?</p> </li> </ol> <p>This list is, of course, not comprehensive. We have not discussed aspects such as security and compliance in a highly heterogeneous IT landscape, business alignment, future readiness, and more. However, addressing all these topics would be too much for one article.</p> <p>So, the next time you encounter a landscape filled with disconnected applications and are tasked with setting up a new environment for a small subsidiary located 2000km away from the client's headquarters, consider this: there's a high chance that no<strong> centrally well-designed architecture is in place</strong>, pushing you further into the complexity trap.</p> <p>What's at the end of this trap? Often, it's the <strong>point when an organization realizes it has made a significant mistake and simply cannot maintain all the systems anymore</strong>. As IT consultants, our role is to prevent this scenario and guide the organization in the right direction before it's too late.</p> <p>It's crucial to have an experienced and well-trained architect present to address these issues. Always prioritize building a <strong>clean design from the beginning and thoroughly</strong> understand the <strong>processes </strong>involved. Otherwise, you might find yourself trapped in the complexity loop later on.</p> </div> </div> <div class="field field--name-field-image field--type-image field--label-above"> <div class="field__label">Image</div> <div class="images-container clearfix"> <div class="image-preview clearfix"> <div class="image-wrapper clearfix"> <div class="field field--name-field-image field--type-image field--label-above field__item">/sites/default/files/2023-11/Logo.jpeg</div> </div> </div> </div> </div> Fri, 10 Nov 2023 10:21:13 +0000 David Uhlmann 723 at https://dynamics-chronicles.com Functional https://dynamics-chronicles.com/article/complexity-trap-and-why-clean-design-good-idea-even-if-everything-works#comments Connect Instantly With Onfield Agents Via Live Chat in Your Location Intelligence Tool https://dynamics-chronicles.com/article/connect-instantly-onfield-agents-live-chat-your-location-intelligence-tool <span property="schema:name" class="field field--name-title field--type-string field--label-hidden">Connect Instantly With Onfield Agents Via Live Chat in Your Location Intelligence Tool</span> <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><a title="View user profile." href="/user/maulik-shah" lang="" about="/user/maulik-shah" typeof="schema:Person" property="schema:name" datatype="" class="username">Maulik Shah</a></span> <span property="schema:dateCreated" content="2023-08-04T05:21:15+00:00" class="field field--name-created field--type-created field--label-hidden">Fri, 08/04/2023 - 07:21</span> <div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-above"> <div class="field__label">Body</div> <div property="schema:text" class="field__item"><p><span><span><span><span><span><span>We're thrilled to announce the introduction of a new feature: Live Chat, in our Location Intelligence tool MappyField 365. This exciting addition will offer better and instant communication between on-field agents and their managers, leading to improved productivity and streamlined operations.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>MappyField 365 is a geolocation plugin for Dynamics 365 users. With this integration, you can plot CRM data on a map, create optimized routes, make visit plans, track onfield agents in real time, and much more.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>We understand the complex dynamics of managing on-field operations. It calls for a robust, quick, and efficient communication system. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Our on-field agents often encounter scenarios that require immediate attention, resolution, or discussion with managers back at the office. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Traditional modes of communication could lead to delays, miscommunications, or operational inefficiencies. Recognizing this challenge, we sought to bridge this gap with the introduction of the Live Chat feature in MappyField 365.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>The Live Chat feature is an integrated, real-time communication tool designed to facilitate instant and efficient communication between on-field agents and their managers. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>With a simple, user-friendly interface, the feature enables agents to start a chat with their managers directly from the <a href="https://www.appjetty.com/dynamics365-mappyfield-365.htm"><strong>Dynamics 365 map</strong></a> plugin in Dynamics 365. </span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Benefits of the Live Chat Feature</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>For on-field agents, the Live Chat feature acts as an instant lifeline, connecting them directly with their managers. It allows for quicker problem-solving, as agents can get immediate responses to their queries. They can share live updates from the field, which could be crucial for organizational operations and decision-making.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>For managers, this feature provides real-time insights into on-field operations, leading to better management and improved decision-making capabilities. It increases productivity by saving the time usually spent on the back-and-forth of emails or phone calls. The Live Chat feature allows managers to guide their agents in real time, ensuring optimal performance and efficient service delivery.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Wrapping Up</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>At MappyField 365, we continually strive to improve and evolve. With the introduction of the Live Chat feature, MappyField 365 is taking a significant step towards revolutionizing on-field operations management. By offering instant, real-time communication between on-field agents and their managers, we aim to streamline processes, improve productivity, and, ultimately, enhance the customer experience.</span></span></span></span></span></span></p> <p> </p></div> </div> <div class="field field--name-field-image field--type-image field--label-above"> <div class="field__label">Image</div> <div class="images-container clearfix"> <div class="image-preview clearfix"> <div class="image-wrapper clearfix"> <div class="field field--name-field-image field--type-image field--label-above field__item">/sites/default/files/2023-08/12291028_Group%20of%20professionals%20analyzing%20international%20map.jpg</div> </div> </div> </div> </div> Fri, 04 Aug 2023 05:21:15 +0000 Maulik Shah 705 at https://dynamics-chronicles.com Functional https://dynamics-chronicles.com/article/connect-instantly-onfield-agents-live-chat-your-location-intelligence-tool#comments Discovering the Future of CRM: Dynamics 365 Partner Portal in Focus https://dynamics-chronicles.com/article/discovering-future-crm-dynamics-365-partner-portal-focus <span property="schema:name" class="field field--name-title field--type-string field--label-hidden">Discovering the Future of CRM: Dynamics 365 Partner Portal in Focus</span> <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><a title="View user profile." href="/user/maulik-shah" lang="" about="/user/maulik-shah" typeof="schema:Person" property="schema:name" datatype="" class="username">Maulik Shah</a></span> <span property="schema:dateCreated" content="2023-07-17T08:37:42+00:00" class="field field--name-created field--type-created field--label-hidden">Mon, 07/17/2023 - 10:37</span> <div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-above"> <div class="field__label">Body</div> <div property="schema:text" class="field__item"><p><span><span><span><span><span><span>Since its inception, Dynamics 365 partner portal has seen tremendous growth. The time when customers used to call or email you for every little detail is long gone. That procedure was tedious, error-prone, sluggish, and frustrating. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>While their calls were being forwarded from one agent to another, customers had to spend a lot of time on the phone to receive simple answers despite having a high-quality product or service, such an experience led to reduced consumer satisfaction. Partner portals were introduced, and they all alleviated these pain points. Dynamics 365 introduced portals with seamless CRM integration. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>The Dynamics 365 partner portal provides self-service options and a personalized dashboard for your partner to access anything. In contrast, it offers your company automation to reduce manual duties, a secure platform to ensure no documents are tampered with, IoT, flexible payment schedules, and more. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Till now, there have been several benefits that this software has offered to you, and it is going to be enormous in the coming years with all the upgrades and everything. So, let's discuss all that in detail!</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>About Dynamics 365 Partner Portal</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>A web-based platform created particularly for Microsoft Dynamics 365 partners is known as the </span></span></span></span></span></span><a href="https://www.crmjetty.com/dynamics-365-partner-portal/"><span><span><span><strong><span><span>Dynamics 365 Partner Portal</span></span></strong></span></span></span></a><span><span><span><span><span><span>. It is a central hub for partner companies' resource access, Microsoft collaboration, and customer relationship management. The Partner Portal gives partners various tools and features to help their commercial activities and improve their relationship with Microsoft. </span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>How is Dynamics 365 Partner Portal dominating the market?</span></span></strong></span></span></span></h2> <h3><span><span><span><strong><span><span>Centralized Access to Partner</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>The Partner Portal is a central location where partners may access various resources, including training materials, product details, marketing initiatives, sales aids, technical documentation, and support forums. Thanks to this centralized access, partners may quickly discover the required information, saving time and effort compared to looking for resources across many platforms.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Enhanced Partner Engagement </span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>Thanks to the Partner Portal, Microsoft, and its partners can engage in productive dialogue. It gives partners a platform to manage their status as partners, get access to partner perks, and interact with Microsoft staff. The relationship between partners and Microsoft is strengthened by this tight cooperation, which opens up prospects for further assistance, direction, and commercial success.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Deal Registration and Management</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>The Partner Portal lets partners communicate with Microsoft's sales teams and register their sales prospects. This guarantees proper visibility and backing for agreements driven by partners. To win and close more business, partners may easily interact, receive help from Microsoft, and monitor the status of their initiatives.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Sales and Marketing Enablement</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>The Partner Portal provides partners with the tools to market and sell Dynamics 365 products successfully. Partners have access to marketing initiatives, sales training materials, client success tales, and other assets that aid in explaining the benefits of Dynamics 365 to clients. These tools help lead creation, customer acquisition, and sales effectiveness.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Technical Support and Issue Resolution</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>When adopting Dynamics 365 solutions, partners may need help with technical difficulties. The Partner Portal gives them access to technical resources and support forums where they may post their problems. Partners may interact with Microsoft professionals, ask questions, and get prompt advice, assisting them in providing their clients with high-quality solutions.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Resource Efficiency and Time Savings</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>The Partner Portal streamlines various partner-related tasks, cutting down on administrative work and increasing productivity. Within a single platform, partners can obtain the required data, submit support requests, update their profiles, and interact. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Partners may spend more time and effort concentrating on providing value to their consumers thanks to consolidating resources and functions, saving them time and effort.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Features of Dynamics 365 Partner Portal</span></span></strong></span></span></span></h2> <h3><span><span><span><strong><span><span>Partner Relationship Management</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>Partners get access to information about their partnership advantages and requirements and the ability to manage their partnership status and monitor and update their organization's profile.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Training and Certification</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>Partners can access a wide range of training materials, resources, and online courses to enhance their technical expertise and obtain certifications related to Dynamics 365 products.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Sales and Marketing Resources</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>The site gives partners access to sales and marketing tools, such as product details, advertisements, materials for sales training, and client success stories. These tools help partners market and sell Dynamics 365 solutions efficiently.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Collaboration and Networking</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>The site gives partners access to sales and marketing tools, such as product details, advertisements, materials for sales training, and client success stories. These tools help partners market and sell Dynamics 365 solutions efficiently.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Technical Support </span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>To handle technical difficulties and seek help from Microsoft specialists, partners can access technical resources, documentation, and support forums. Partners can use this functionality to respond to consumer questions and give support quickly.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Future of Dynamics 365 Partner Portal</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>With time, there will be several enhancements take place. The CRM platform is evolving, and this partner portal will experience continuous integration and enhancements as more and more new technologies emerge. There have also been several improvements that have taken place, and here you will learn about those improvements and what the future holds for this. </span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Microsoft Dataverse Development</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>The data warehouse supporting Microsoft's applications is called Dataverse. Any app your firm uses might send data into this store; any other app could get data from it. Microsoft has previously used this powerful feature to synchronize its products and give users a smooth experience.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Dataverse Integrations </span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>Building on the possibilities of Dataverse, interoperability will probably be a significant priority. The Microsoft Power Platform, user-created Canvas apps, and Microsoft Power Automate automation already use Dataverse APIs. Expect this level of integration to increase along with the scalability of the framework's performance, dependability, and ability to store data, among other improvements.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Machine Learning</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>With machine learning advancements, Dynamics 365's predictive abilities will probably improve. Microsoft has already put much effort into developing products like Microsoft Cloud for Retail that use AI and ML to offer buyers helpful advice and recommendations.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Cloud Capabilities</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>With Microsoft Cloud for Financial Services, Healthcare, Retail, Nonprofit, and more, significant effort has already been made to bring value-added capabilities to the cloud. In the upcoming years, performance, scalability, the range of services, and availability will all increase and improve. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>There are plans for closer integration with Pharma's marketing and sales data models and improved connectivity with pertinent data exchange APIs shortly.</span></span></span></span></span></span></p> <h3><span><span><span><strong><span><span>Internet of Things (IoT)</span></span></strong></span></span></span></h3> <p><span><span><span><span><span><span>Microsoft recently released a new Sensor Data add-in for Supply Chain Management, which hints at how the firm plans to use this technology. The current objective is to allow organizations to have their equipment and devices independently report consumption and other vital statistics. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Companies can monitor crucial statistics for planning and maintenance in real time, and some tasks related to these operations will be automated.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Conclusion </span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>The platform has developed and undergone numerous adjustments, with new features being introduced and enhanced annually. Numerous platform changes made this year will have significant positive effects and significantly improve how businesses use the platform. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Given the speed and direction that Microsoft D365 is moving, there is a lot to be excited about with the improvements we anticipate occurring in the future.</span></span></span></span></span></span></p> <p> </p></div> </div> <div class="field field--name-field-image field--type-image field--label-above"> <div class="field__label">Image</div> <div class="images-container clearfix"> <div class="image-preview clearfix"> <div class="image-wrapper clearfix"> <div class="field field--name-field-image field--type-image field--label-above field__item">/sites/default/files/2023-07/dynamics%20365%20portal_0.jpg</div> </div> </div> </div> </div> Mon, 17 Jul 2023 08:37:42 +0000 Maulik Shah 702 at https://dynamics-chronicles.com Functional https://dynamics-chronicles.com/article/discovering-future-crm-dynamics-365-partner-portal-focus#comments How to Streamline Field Service Operations with Location Intelligence https://dynamics-chronicles.com/article/how-streamline-field-service-operations-location-intelligence <span property="schema:name" class="field field--name-title field--type-string field--label-hidden">How to Streamline Field Service Operations with Location Intelligence</span> <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><a title="View user profile." href="/user/maulik-shah" lang="" about="/user/maulik-shah" typeof="schema:Person" property="schema:name" datatype="" class="username">Maulik Shah</a></span> <span property="schema:dateCreated" content="2023-07-07T04:26:58+00:00" class="field field--name-created field--type-created field--label-hidden">Fri, 07/07/2023 - 06:26</span> <div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-above"> <div class="field__label">Body</div> <div property="schema:text" class="field__item"><p><span><span><span><span><span><span>Many businesses use geocoding to track clients and plan strategies based on location. By using location intelligence and mapping data, businesses can enhance their operations, improve the customer experience, and make better strategic decisions. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Geolocation tools like MappyField 365 can assist in the growth of your company by visually representing data on a map, managing sales activities, conducting searches based on specific distances, enabling real-time tracking, etc.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Continue reading to discover in-depth advantages of <a href="https://www.appjetty.com/dynamics365-mappyfield-365.htm"><strong>Dynamics 365 Map</strong></a>.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Analyze Data</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>The Dynamics 365 Map plugin is a valuable tool for analyzing data. It allows you to quickly see a summary of each record and utilize heat maps to gain deeper insights.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>This plugin is particularly useful for identifying areas of strong performance and pinpointing problem areas. By visualizing data geographically, you can easily understand the strengths and weaknesses of different regions.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>With the assistance of the plugin, you can view records from various geographical areas. You have the flexibility to filter regions based on different criteria, such as income, profit, sales, and opportunities</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>The heat maps generated by the plugin use different color densities to represent data, enabling more accurate analysis. Furthermore, the plugin provides real-time updates, allowing employees to access the information through the app and make better-informed decisions. They simply need to log in to the app to access all the necessary information.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Data Plotting</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>Data plotting is a geographical method that visually represents the relationship between two or more variables by using various graphs.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>With the help of the plot function, you can plot any data on a map directly from your mobile device. This means you can represent records based on their location, region, or territory. Sales professionals can plot the data and present you with valuable insights.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>By plotting data, you enhance the visualization of your CRM data. You can apply different filters to view specific data and gain clear and comprehensive visualization of the information.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Search Surrounding Proximity</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>The proximity search feature is extremely useful for businesses that want to focus on their local region. It allows users to search for local clients and potential clients within a short distance, thereby expanding the reach of their marketing efforts.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>This feature in MappyField 365 becomes particularly handy when running marketing campaigns that target clients within a specific radius. By listing records based on proximity, businesses can effectively identify and target their desired audience. The results can be saved and plotted on a map, thanks to this feature. Additionally, different users can be granted permission to view, edit, and update the plotted information.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Route Optimization</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>Optimizing your routes is crucial for sales efficiency, as it allows you to minimize driving time while still meeting customer demands. By creating a map of each route, you can identify the fastest and most efficient path to take.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>One of the primary objectives for sales and field services is to arrive at destinations on time. Dynamics 365 provides user-friendly interface that make it easy to understand and navigate routes effectively.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>With route optimization, you can plan additional stops along the way before reaching your final delivery point. This not only saves you money and fuel but also maximizes the productivity of your sales staff. By integrating the Dynamics 365 Map plugin with your Dynamics 365 CRM, you can enhance the efficiency of your sales operations.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Moreover, by utilizing the map functionality, you can gain insight into different transportation options, helping you avoid toll roads and highways when necessary. This further contributes to optimizing your routes and improving overall efficiency.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Live Tracking</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>Live tracking is a valuable feature that allows you to have a real-time overview of the check-ins and check-outs of your field resources. It enables you to track their movements and calculate the average completion time for tasks. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>This feature helps you plan and visualize ongoing and completed activities effectively. Additionally, you can add notes before making payments, which can be beneficial for record-keeping purposes.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>With live tracking, you can easily monitor the records and activities of each user. It helps you identify any obstacles or issues that may arise during the check-in and check-out process. This feature also enables you to keep tabs on your team's activity while they are in the field, providing you with greater visibility and control.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Find POI</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>The POI features are beneficial for sales representatives as they provide valuable information about various locations, including ratings and recommendations for the best food. It makes it easy to identify cafes, hotels, restaurants, medical shops, and more.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Imagine a scenario where a salesperson visits a company and plans a meeting at a nearby coffee shop. With the help of the POI features, finding such locations becomes effortless, streamlining the process of locating places along the way. This feature not only simplifies navigation but also allows sales representatives to impress clients by selecting convenient meeting spots.</span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Live Chat</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>The new Live Chat feature in MappyField 365 revolutionizes communication between managers and on-field agents. Seamlessly integrated into our geolocation mapping tool for Dynamics 365 users, Live Chat enables real-time collaboration for instant support and information exchange. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>With the ability to share images, documents, etc. more directly within the conversation, managers can provide immediate instructions and troubleshoot issues promptly. </span></span></span></span></span></span></p> <h2><span><span><span><strong><span><span>Conclusion</span></span></strong></span></span></span></h2> <p><span><span><span><span><span><span>The integration of Dynamics 365 Map offers numerous benefits. It simplifies the usage and operation of mobile devices, providing advantages such as route optimization, finding Points of Interest (POI), and easy access to directions for reaching destinations. These features greatly support data analysis and enhance visualization capabilities. Additionally, the check-in and check-out tracking features enable real-time monitoring while also facilitating the scheduling of customer visits to nearby locations.</span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Moreover, the inclusion of a live chat feature has changed the game for onfield agents. They are able to get answers to their queries in no time. Similarly, managers are getting updates as soon as possible, which makes it easy for them to plan the next meetings.</span></span></span></span></span></span><br />  </p></div> </div> <div class="field field--name-field-image field--type-image field--label-above"> <div class="field__label">Image</div> <div class="images-container clearfix"> <div class="image-preview clearfix"> <div class="image-wrapper clearfix"> <div class="field field--name-field-image field--type-image field--label-above field__item">/sites/default/files/2023-07/10780369_19199658.jpg</div> </div> </div> </div> </div> Fri, 07 Jul 2023 04:26:58 +0000 Maulik Shah 689 at https://dynamics-chronicles.com Functional https://dynamics-chronicles.com/article/how-streamline-field-service-operations-location-intelligence#comments Microsoft Viva Sales Overview and Presentation https://dynamics-chronicles.com/article/microsoft-viva-sales-overview-and-presentation <span property="schema:name" class="field field--name-title field--type-string field--label-hidden">Microsoft Viva Sales Overview and Presentation</span> <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><a title="View user profile." href="/user/gauthier-bordat" lang="" about="/user/gauthier-bordat" typeof="schema:Person" property="schema:name" datatype="" class="username">Gauthier Bordat</a></span> <span property="schema:dateCreated" content="2023-06-19T09:25:09+00:00" class="field field--name-created field--type-created field--label-hidden">Mon, 06/19/2023 - 11:25</span> <div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-above"> <div class="field__label">Body</div> <div property="schema:text" class="field__item"><p><em>Microsoft Viva Sales Overview and Presentation:</em></p> <h3><span><span><span><span>Contents</span></span></span></span></h3> <ol> <li> <h5><span><span><span><span><span><span>The goal</span></span></span></span></span></span></h5> </li> <li> <h5><span><span><span><span><span><span>Features</span></span></span></span></span></span></h5> </li> <li> <h5><span><span><span><span><span><span>Comparison between Dynamics 365 for Outlook and Viva Sales</span></span></span></span></span></span></h5> </li> <li> <h5><span><span><span><span><span><span>The architecture</span></span></span></span></span></span></h5> </li> <li> <h5><span><span><span><span><span><span>The price</span></span></span></span></span></span></h5> </li> <li> <h5><span><span><span><span><span><span>The installation</span></span></span></span></span></span></h5> </li> <li> <h5><span><span><span><span><span><span>Outlook</span></span></span></span></span></span></h5> </li> <li> <h5><span><span><span><span><span><span>Teams</span></span></span></span></span></span></h5> </li> <li> <h5><span><span><span><span><span><span>The customization</span></span></span></span></span></span></h5> </li> <li> <h5><span><span><span><span><span><span>Conclusion</span></span></span></span></span></span></h5> </li> </ol> <p> </p> <h3><span><span><span><span><span><a>The goal</a></span></span></span></span></span></h3> <p> </p> <p><span><span><span>Viva Sales is a newly introduced tool developed by Microsoft. Its primary purpose is to assist sellers in optimizing their time during customer interactions by minimizing the effort required to transfer data from Outlook or Teams to their CRM. It serves as an efficient link between productivity systems (such as Teams and Outlook) and the CRM, which acts as the system of record.</span></span></span></p> <p><span><span><span>While sellers possess valuable information, they often dedicate minimal time (up to 10% at most) to inputting this data into the CRM due to various other responsibilities. Viva Sales address this challenge by automatically transferring relevant data from seller communications with customers directly into the CRM. Sellers can conveniently remain within their Outlook environment and enter necessary data into the CRM without switching between platforms.</span></span></span></p> <p><span><span><span>Additionally, Viva Sales leverages powerful AI capabilities to assist sellers in making informed decisions and capturing important notes. This integration of AI enhances the overall functionality of the tool and contributes to a more efficient sales process.</span></span></span></p> <img alt="5 points of Viva Sales around seller : 1 Included in MS365 2: Seller tasks in familiar MS 365 apps 3: AI insights in the flow of work 4: AI generates email content 5:Automste logging &amp; tracking" data-entity-type="file" data-entity-uuid="476eaab9-9602-4d88-9cea-a12943535aef" src="/sites/default/files/inline-images/tempo.png" class="align-center" /> <p><span><span><span>Viva Sales can improve the productivity of a seller in multiple scenarios using Outlook or Teams. </span></span></span></p> <img alt="Viva Sales use multiple features to help seller in the use of Outlook and Teams " data-entity-type="file" data-entity-uuid="d60813d9-bf83-4d5a-a842-ead12abb43d9" src="/sites/default/files/inline-images/tempo_0.png" class="align-center" /> <h3><span><span><span><span><span><a>Features</a> </span></span></span></span></span></h3> <p><span><span><span>Viva Sales can update and access the customer's CRM record from the Outlook app. And that for a Microsoft CRM or a salesforce CRM: </span></span></span></p> <img alt="In Outlook Viva Sales right panel can creat a contact from an email " data-entity-type="file" data-entity-uuid="18468ba4-297b-433e-acb0-eb3ac6c4d15c" src="/sites/default/files/inline-images/tempo_37.png" class="align-center" /><img alt="Microsoft Viva Sales Overview and Presentation" data-entity-type="file" data-entity-uuid="85f1538c-78ea-41d8-be06-78bab7b99c1c" src="/sites/default/files/inline-images/tempo_38.png" class="align-center" /> <p><span><span><span>Viva Sales improves also the time spend in response to customer by suggesting response.  The AI of Viva Sales and Copilot write the mail with the best information for the client it is not just a template is way more than that. </span></span></span></p> <p><img alt="Microsoft Viva Sales Overview and Presentation" data-entity-type="file" data-entity-uuid="090b7113-f547-4556-bf9a-27784dbad2b9" src="/sites/default/files/inline-images/tempo_3.png" /><img alt="The email writes by Viva Sales have data from the CRM" data-entity-type="file" data-entity-uuid="7435940e-7190-469a-a2f6-bf17e34ad890" src="/sites/default/files/inline-images/tempo_4.png" /></p> <p><span><span><span>With Viva Sales you can see the level of interaction some coworkers get with the customer. And directly share data from the CRM trough Teams.</span></span></span></p> <p><img alt="the level of interaction with a client is display in Viva Sales" data-entity-type="file" data-entity-uuid="d140a413-97c2-4cf6-a4d9-2be7a52e195d" src="/sites/default/files/inline-images/tempo_5.png" /><img alt="Microsoft Viva Sales Overview and Presentation" data-entity-type="file" data-entity-uuid="fa12db94-296b-409d-99ee-e9489b2b2ce6" src="/sites/default/files/inline-images/tempo_6.png" /></p> <p><span><span><span>Viva Sales provides a comprehensive summary of the Teams meeting transcript, offering recommended actions derived from the discussion as well as a sentiment analysis of the conversation. The conversation intelligence is available at various levels, but for the complete experience, it is recommended to purchase the D365 Sales Premium experience. This premium offering enhances the capabilities and insights derived from the meeting, providing a more robust and comprehensive understanding of the conversation, and enabling users to make informed decisions and take appropriate actions based on the analysis provided.</span></span></span></p> <img alt="Summary made by Viva Sales" data-entity-type="file" data-entity-uuid="a9de5ebb-d042-45d8-8bad-73b5dea0df58" src="/sites/default/files/inline-images/tempo_7.png" class="align-center" /><img alt="Transcript of the call and emotion detection with some summary of action to tack " data-entity-type="file" data-entity-uuid="c9232729-9319-49d0-9a7c-458446a0408e" src="/sites/default/files/inline-images/tempo_36.png" class="align-center" /> <p><span><span><span>After a meeting, with GPT Viva Sales, it is possible to create and send a summary of the latest Teams conversation directly to all participants. This feature saves time for the salesperson, allowing them to focus solely on their discussion with the client instead of taking extensive notes. Additionally, the email includes embedded CRM data for reviewing and validating the information discussed during the meeting.</span></span></span></p> <p><span><span><span><img alt="button for create the summary " data-entity-type="file" data-entity-uuid="be0c4d95-dde0-48be-8c85-1affa7fa0ed6" src="/sites/default/files/inline-images/tempo_9.png" /></span></span></span><img alt="the summary " data-entity-type="file" data-entity-uuid="435df13e-5906-4000-86d1-0065c14b3eab" src="/sites/default/files/inline-images/tempo_10.png" /><img alt="links to the CRM in the summary " data-entity-type="file" data-entity-uuid="088ce6f1-1277-45e2-9cfd-219f57276331" src="/sites/default/files/inline-images/tempo_11.png" /></p> <h3><span><span><span><span><span><a>Comparison between Dynamics 365 for Outlook and Viva Sales</a></span></span></span></span></span></h3> <p><span lang="EN-US" xml:lang="EN-US" xml:lang="EN-US"><span><span>While some features may appear similar between D365 for Outlook and the Viva Sales app in Outlook, the key distinction lies in their respective goals. D365 for Outlook primarily focuses on tracking, reading, and writing between M365 (Outlook) and D365, essentially serving as an additional feature of D365. On the other hand, Viva Sales aims to minimize time lost for sales professionals. While it leverages the features of D365 for Outlook to achieve this goal, Viva Sales goes beyond that. It offers valuable sales insights, enhances customer engagement, facilitates collaboration among sellers, and even allows integration with Salesforce CRM. In essence, Viva Sales expands upon the foundation provided by D365 for Outlook to deliver a comprehensive sales solution with advanced functionalities.</span></span></span></p> <h3><span><span><span><span><span><a>The architecture</a></span></span></span></span></span></h3> <p><span><span><span>The structure of Viva Sales is composed of three main layers:</span></span></span></p> <p><span><span><span><strong>Client Apps</strong>: These include the Teams and Outlook Viva Sales apps, which are designed to enhance productivity and efficiency for sellers. These apps serve as user interfaces and do not directly communicate with the CRM system.</span></span></span></p> <p><span><span><span><strong>Service Layer</strong>: This layer acts as an interface between Viva Sales and the CRM system. It is responsible for customizing Viva Sales to meet the specific needs of the sales team. The service layer is where the intelligent features of the application are developed, incorporating AI functionalities. Additionally, it interacts with the M365 (Outlook) layer to leverage its features.</span></span></span></p> <p><span><span><span><strong>CRM Layer</strong>: This layer represents the underlying CRM system, which can be either Dataverse or Salesforce Business Entities. The CRM layer serves as the foundation for data storage and management, providing the necessary functionality for sales operations within Viva Sales.</span></span></span></p> <p><span><span><span>Overall, this architectural structure ensures seamless integration between the client apps, the service layer for customization and AI capabilities, and the CRM layer for data management and functionality.</span></span></span></p> <img alt="the architecture of Viva Sales" data-entity-type="file" data-entity-uuid="4e22670e-865d-4b78-9450-cc8acbb9c93e" src="/sites/default/files/inline-images/tempo_39.png" class="align-center" /> <h3><span><span><span><span><span><a>The price</a></span></span></span></span></span></h3> <p><span><span><span>Viva Sales is designed to cater to companies that do not currently utilize D365 CRM, offering them the opportunity to access its functionalities for a cost of $40 per user per month. While this may appear costly at first glance, Microsoft justifies the price by emphasizing the significant time savings that can be achieved through the use of Viva Sales. The value gained from increased efficiency and productivity is considered to outweigh the $40 per user per month investment.</span></span></span></p> <p><span><span><span>For companies already utilizing D365, pricing may vary depending on the package they choose. Additionally, the level of conversation intelligence and the available AI features may differ based on the specific package selected by the company.</span></span></span></p> <img alt="Viva Sales prices" data-entity-type="file" data-entity-uuid="d05b580e-4b36-430a-a4ab-9f6516396b49" src="/sites/default/files/inline-images/tempo_13.png" class="align-center" /><img alt="Viva Sales prices" data-entity-type="file" data-entity-uuid="52dba25a-c77f-4189-b756-05b8c085e33d" src="/sites/default/files/inline-images/tempo_14.png" class="align-center" /><img alt="Viva Sales prices" data-entity-type="file" data-entity-uuid="4731d370-4d47-410d-97da-cd486a9db263" src="/sites/default/files/inline-images/tempo_40.png" class="align-center" /><img alt="Viva Sales prices" data-entity-type="file" data-entity-uuid="55968cda-ffb8-46ef-b83f-b84c045af531" src="/sites/default/files/inline-images/tempo_16.png" class="align-center" /> <p> </p> <img alt="Viva Sales prices" data-entity-type="file" data-entity-uuid="9dc4dbd0-5d04-4552-849d-d7a6b4215ccc" src="/sites/default/files/inline-images/tempo_17.png" class="align-center" /><img alt="Viva Sales prices" data-entity-type="file" data-entity-uuid="9e978eb1-4192-41c9-b73d-d30dbbe79b91" src="/sites/default/files/inline-images/tempo_41.png" class="align-center" /> <h3><span><span><span><span><span><a>The installation</a></span></span></span></span></span></h3> <p><span><span><span>To install Viva sale on your tenant you need to install it in your Outlook app and Team app. You need to be Microsoft 365 administrator and Teams administrator.</span></span></span></p> <h4><span><span><span><span><span><a>Outlook</a>  </span></span></span></span></span></h4> <p><span><span><span><a href="https://learn.microsoft.com/en-us/viva/sales/install-viva-sales-individual-add-in-admin-center">https://learn.microsoft.com/en-us/viva/sales/install-viva-sales-individual-add-in-admin-center</a></span></span></span></p> <p><span><span><span>Go in the admin center (<a href="https://admin.microsoft.com/">https://admin.microsoft.com/</a>) in Settings &gt; Integrated apps and to install click on get apps.</span></span></span></p> <img alt="Go to Settings &gt; Integrated apps &gt; get apps " data-entity-type="file" data-entity-uuid="9e070cc7-16c9-493c-aac6-c2767e5487c2" src="/sites/default/files/inline-images/tempo_42.png" class="align-center" /> <p><span><span><span>In the AppSource search Viva Sales for Microsoft Outlook.</span></span></span></p> <img alt="" data-entity-type="file" data-entity-uuid="bff43183-ef01-4cdd-889f-aab4bde49044" src="/sites/default/files/inline-images/tempo_43.png" class="align-center" /><img alt="" data-entity-type="file" data-entity-uuid="441925e6-1fd2-4f53-83e3-343b75c741e9" src="/sites/default/files/inline-images/tempo_44.png" class="align-center" /> <p><span><span><span>Went Viva sales is installed you can assign it to user.</span></span></span></p> <img alt="" data-entity-type="file" data-entity-uuid="824d2e62-0c56-4795-9490-5333b7959bd9" src="/sites/default/files/inline-images/tempo_45.png" class="align-center" /> <p><span><span><span>When Viva Sales is installing on Outlook you should see one of the following. </span></span></span></p> <img alt="" data-entity-type="file" data-entity-uuid="d6a522c4-583b-4b31-9f60-7c46148da002" src="/sites/default/files/inline-images/tempot_0.png" class="align-center" /><img alt="" data-entity-type="file" data-entity-uuid="2818b00f-fc4a-4519-939b-b82670b4c47e" src="/sites/default/files/inline-images/tempo_24.png" class="align-center" /><img alt="" data-entity-type="file" data-entity-uuid="90d1fe15-1852-40c8-806b-06030cc3d9ee" src="/sites/default/files/inline-images/tempot.png" class="align-center" /> <h4><span><span><span><span><span><a>Teams</a></span></span></span></span></span></h4> <p><span><span><span>Go to <a href="https://admin.teams.microsoft.com/">https://admin.teams.microsoft.com/</a> to configure Viva sale for Teams in the setup policies you have to Install the Viva Sales and add it to the pinned apps. </span></span></span></p> <img alt="Microsoft Viva Sales Overview and Presentation" data-entity-type="file" data-entity-uuid="f100eef6-f49e-412e-ba5b-e1233b8e2ef1" src="/sites/default/files/inline-images/tempo_26.png" class="align-center" /><img alt="Go to Teams apps &gt; Setup policies &gt; +add" data-entity-type="file" data-entity-uuid="9dc35347-b57b-4e89-83d9-42ff85366a5f" src="/sites/default/files/inline-images/tempo_48.png" class="align-center" /> <p><span><span><span>After that you must assign it to some users. </span></span></span></p> <img alt="Microsoft Viva Sales Overview and Presentation" data-entity-type="file" data-entity-uuid="d49be2a5-e268-4c58-a979-1e9be0205930" src="/sites/default/files/inline-images/tempo_49.png" class="align-center" /> <p><span><span><span>It can take some minutes to be effective on Teams.</span></span></span></p> <h3><span><span><span><span><span><a>The customization</a> </span></span></span></span></span></h3> <p><span><span><span>Viva Sales tab have a display pre-made. </span></span></span></p> <img alt="" data-entity-type="file" data-entity-uuid="eeb085e6-e04b-49b3-967a-69f59f5a4be4" src="/sites/default/files/inline-images/tempo_29.png" class="align-center" /> <p>1 : Contact details, such as title and account</p> <p>2 : Private notes card to enter personal notes for a contact. These notes are private and are not saved in the CRM system.</p> <p>3 : Recent (past and future) e-mails and meetings with the contact</p> <p>4 : Back button to return to the list of CRM and external contacts</p> <p>5 . Pin or unpin the application pane</p> <p>6 : Close the application pane</p> <p>7 : Options menu</p> <p>8 : Customer contact information</p> <p>9 : Options menu. Allows you to edit the contact, copy the link to the contact and open it in your connected CRM.</p> <p>10 : Contact opportunities</p> <p>11 : Account associated with the contact</p> <p>12 : <span lang="EN-US" xml:lang="EN-US" xml:lang="EN-US"><span><span>Options menu. Allows you to copy the link to the record and open it in your connected CRM.</span></span></span></p> <p> </p> <p><span><span><span>You can customize this in the Teams Viva Sales app. </span></span></span></p> <img alt="Microsoft Viva Sales Overview and Presentation" data-entity-type="file" data-entity-uuid="bec9ff10-b625-455b-a19a-9e376733237e" src="/sites/default/files/inline-images/tempo_50.png" class="align-center" /><img alt="Microsoft Viva Sales Overview and Presentation" data-entity-type="file" data-entity-uuid="dc272cc9-4543-4806-a09e-0c09eba702f3" src="/sites/default/files/inline-images/tempo_51.png" class="align-center" /> <h3>Conclusion</h3> <p>In conclusion, Viva Sales is an excellent tool for enhancing the performance of a sales team, as it allows them to concentrate on their work while automating the input of feedback into the CRM system. Additionally, Viva Sales can significantly improve the quality of client relationships by providing valuable insights to sellers. It is worth noting that Viva Sales is continuously updated and enriched with new features, ensuring that it remains up-to-date and relevant in meeting the evolving needs of sales professionals.</p> <h2 class="title">Microsoft Viva Sales Overview and Presentation</h2> </div> </div> <div class="field field--name-field-image field--type-image field--label-above"> <div class="field__label">Image</div> <div class="images-container clearfix"> <div class="image-preview clearfix"> <div class="image-wrapper clearfix"> <div class="field field--name-field-image field--type-image field--label-above field__item">/sites/default/files/2023-06/_83fbb74f-20ce-4b07-bfd0-b56e7a2c8ed5.jpeg</div> </div> </div> </div> </div> Mon, 19 Jun 2023 09:25:09 +0000 Gauthier Bordat 652 at https://dynamics-chronicles.com Security and Compliance in Dynamics 365: Why Hiring a Developer is Crucial https://dynamics-chronicles.com/article/security-and-compliance-dynamics-365-why-hiring-developer-crucial <span property="schema:name" class="field field--name-title field--type-string field--label-hidden">Security and Compliance in Dynamics 365: Why Hiring a Developer is Crucial</span> <span rel="schema:author" class="field field--name-uid field--type-entity-reference field--label-hidden"><a title="View user profile." href="/user/maulik-shah" lang="" about="/user/maulik-shah" typeof="schema:Person" property="schema:name" datatype="" class="username">Maulik Shah</a></span> <span property="schema:dateCreated" content="2023-06-12T08:58:22+00:00" class="field field--name-created field--type-created field--label-hidden">Mon, 06/12/2023 - 10:58</span> <div class="clearfix text-formatted field field--name-body field--type-text-with-summary field--label-above"> <div class="field__label">Body</div> <div property="schema:text" class="field__item"><p><span><span><span><span><span><span>According to the 2020 Cost of Data Breach </span></span></span></span></span></span><a href="https://www.ibm.com/security/digital-assets/cost-data-breach-report/1Cost%20of%20a%20Data%20Breach%20Report%202020.pdf"><span><span><span><span><span><span><span><span>report</span></span></span></span></span></span></span></span></a><span><span><span><span><span><span> by IBM, the average cost of a data breach was $3.86 million globally. Compromised credentials were the most expensive part of this breach, with 1 in 5 companies suffering a data breach because of stolen credentials. And customer’s personal information was the most compromised record for most breaches. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Security has always been crucial and often the most expensive part of a business. There is a huge gap between businesses that are digital and businesses that are securely digital. Overall, digitalizing a business has never been as accessible as now, so most businesses are able to take that step. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Ensuring the security and compliance of your business operations is of paramount importance. This holds especially true for organizations using Dynamics 365, a comprehensive suite of business applications that stores and manages sensitive data. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>To safeguard your valuable information and maintain regulatory compliance, <a href="https://www.crmjetty.com/hire-microsoft-dynamics-365-developers/">hire Dynamics 365 developer</a> is a crucial step. In this article, we'll explore the significance of security and compliance in Dynamics 365 and explain why hiring a developer specialized in this field is essential.</span></span></span></span></span></span></p> <ol> <li><span><span><span><strong><span><span>Protecting Sensitive Data:</span></span></strong></span></span></span></li> </ol> <p><span><span><span><span><span><span>Dynamics 365 contains a wealth of critical business data, including customer information, financial records, and proprietary data. A Dynamics 365 developer with expertise in security can implement robust measures to protect this sensitive information from unauthorized access, data breaches, and cyber threats. They can ensure data encryption and user authentication and implement security protocols to safeguard your business data.</span></span></span></span></span></span></p> <ol start="2"> <li><span><span><span><strong><span><span>Implementing Role-Based Access Control:</span></span></strong></span></span></span></li> </ol> <p><span><span><span><span><span><span>Every organization has different hierarchies and user roles that require varying data access levels within Dynamics 365. A developer can configure role-based access control (RBAC) mechanisms to grant appropriate permissions to users based on their roles. This ensures that employees only have access to the data they need, minimizing the risk of data leaks and unauthorized usage.</span></span></span></span></span></span></p> <ol start="3"> <li><span><span><span><strong><span><span>Ensuring Regulatory Compliance:</span></span></strong></span></span></span></li> </ol> <p><span><span><span><span><span><span>Many industries are subject to stringent regulations and compliance standards, such as GDPR, HIPAA, or PCI-DSS. Non-compliance can lead to hefty fines, legal issues, and damage to your brand reputation. A Dynamics 365 developer well-versed in compliance requirements can help you navigate these regulations and implement the necessary measures within your system, ensuring you meet all the necessary compliance standards.</span></span></span></span></span></span></p> <ol start="4"> <li><span><span><span><strong><span><span>Monitoring and Auditing:</span></span></strong></span></span></span></li> </ol> <p><span><span><span><span><span><span>Continuous monitoring and auditing of your Dynamics 365 system are crucial to detect suspicious activities, identify potential vulnerabilities, and ensuring compliance. A developer can configure robust monitoring tools and implement auditing mechanisms that track user actions, system changes, and data access. This allows for proactive identification and resolution of security issues, maintaining the integrity of your system.</span></span></span></span></span></span></p> <ol start="5"> <li><span><span><span><strong><span><span>Staying Up-to-Date with Security Patches:</span></span></strong></span></span></span></li> </ol> <p><span><span><span><span><span><span>The security landscape constantly evolves, with new vulnerabilities and threats emerging regularly. A skilled Dynamics 365 developer stays abreast of the latest security updates and patches Microsoft releases. By promptly applying these patches, they can protect your system from known vulnerabilities and ensure that your Dynamics 365 environment is secure and up-to-date.</span></span></span></span></span></span></p> <p> </p> <p><span><span><span><strong><span><span>Conclusion:</span></span></strong></span></span></span></p> <p><span><span><span><span><span><span>By making this investment, you can rest assured that your organization's valuable information remains safeguarded, maintaining the trust of your customers and ensuring long-term success. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Make the most of your Dynamics 365 investment by hiring a developer who can ensure your processes and data function as you need and is secure against external threats and malicious attacks. </span></span></span></span></span></span></p> <p><span><span><span><span><span><span>Hire a Dynamics 365 developer with a portfolio of experience across several industries, as they will be able to bring that expertise to the table. When selecting a Dynamics 365 developer, apart from checking on their skills, ensure they are a good fit for your company, as this will greatly impact the overall experience for you and them. </span></span></span></span></span></span></p> <p> </p></div> </div> Mon, 12 Jun 2023 08:58:22 +0000 Maulik Shah 654 at https://dynamics-chronicles.com Functional https://dynamics-chronicles.com/article/security-and-compliance-dynamics-365-why-hiring-developer-crucial#comments