Thursday, December 19, 2024

Send an email to all users of a team in Dynamics 365 when a checkbox is checked

Dynamics 365 Team Email Notification

Yesterday, someone from a WhatsApp group asked me to help with the following scenario:

"I have created one team in Dynamics 365. I want to send an email to all the users when one of the checkboxes on the form is enabled.

(I am able to fetch the team name, but not able to fetch the users' email IDs of that group.) Any idea how to send an email to all the users of the team?"

To send an email to all users of a team in Dynamics 365 when a checkbox is enabled, you can follow these steps:

1. Understand Dynamics 365 Team and Users Relationship

  • In Dynamics 365, each Team is associated with multiple Users.
  • The relationship is typically stored in the TeamMembership table, linking Teams and Users.

2. Fetch Users' Email Addresses from the Team

To fetch the email addresses of users in a team, you can query the TeamMembership and SystemUser tables:

  • Team Table: Get the Team's GUID.
  • TeamMembership Table: Use the Team's GUID to retrieve associated User IDs.
  • SystemUser Table: Fetch email addresses for those User IDs.

3. Use a Plugin, Workflow, or Power Automate

Option 1: Using a Plugin

If you're using a plugin, the logic can look like this:

Trigger Point:

  • The plugin is triggered when the checkbox field is updated.

Plugin Code Sample:


public void Execute(IServiceProvider serviceProvider)
{
    IPluginExecutionContext context = 
        (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext));
    IOrganizationServiceFactory serviceFactory = 
        (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
    IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);

    // Fetch the team ID from the context or related entity
    Guid teamId = new Guid("TEAM_GUID");

    // Query to fetch users in the team
    QueryExpression query = new QueryExpression("teammembership")
    {
        ColumnSet = new ColumnSet(false)
    };
    query.Criteria.AddCondition("teamid", ConditionOperator.Equal, teamId);
    EntityCollection teamMemberships = service.RetrieveMultiple(query);

    // Collect user emails
    List emails = new List();
    foreach (var teamMembership in teamMemberships.Entities)
    {
        Guid userId = teamMembership.GetAttributeValue("systemuserid");
        Entity user = service.Retrieve("systemuser", userId, new ColumnSet("internalemailaddress"));
        string email = user.GetAttributeValue("internalemailaddress");
        if (!string.IsNullOrEmpty(email))
        {
            emails.Add(email);
        }
    }

    // Send email logic
    // Create and send email using the collected email addresses
}
    

Option 2: Using Power Automate

  1. Trigger: Set the trigger as When a record is updated for the entity containing the checkbox.
  2. Actions:
    • Use the team ID to fetch the team record.
    • List team members using the List Rows action on the TeamMembership table with the teamid filter.
    • Fetch user emails from the SystemUser table.
    • Send an email using the collected email addresses.

Option 3: Using a Workflow

  1. Trigger: The workflow is triggered when the checkbox is updated.
  2. Steps:
    • Retrieve users in the team using the RetrieveMultiple method.
    • Send an email to all retrieved users.

Calculate Age from Date of Birth using PowerFx

Calculate Age in PowerFX

Calculate Age using Power FX formula

To calculate age using Power FX (the formula language used in Microsoft Power Apps), you can use a formula that calculates the difference between the current date and the date of birth (DOB).

PowerFX Code:

// Assume DateOfBirth is a Date field in your app
Age = DateDiff(DateOfBirth, Today(), Years)

Explanation:

  • DateOfBirth: The field that contains the user's birthdate.
  • Today(): This function gets the current date.
  • DateDiff: This function calculates the difference between two dates.
  • Years: The unit for the difference, which will return the age in years.

Example Use Case in a Label Control:

  1. Suppose you have a form with a DateOfBirth field.
  2. Add a label to your Power App.
  3. In the Text property of the label, enter the following formula:
"Age: " & Text(DateDiff(DateOfBirth.SelectedDate, Today(), Years))

This will display the age in years based on the selected date of birth in the DateOfBirth field.

Considerations:

  • This method assumes the person has already had their birthday this year. If the birthday hasn't occurred yet in the current year, the result will be one year less.
  • If you need to adjust this for precise age calculation (e.g., considering if the birthday has passed this year), you can add more logic to handle that.

Migrate KB Articles with all attachments from Dynamics 365/CRM

KB Articles Migration Guide

KB Articles Migration Guide

Yesterday, someone from a WhatsApp group asked me to help with "How to migrate KB Articles with all attachments from CRM to another system".

Migrating Knowledge Base (KB) Articles along with their attachments from Microsoft Dynamics 365 CRM to another system requires careful planning. Below is a detailed step-by-step approach to achieve this:


1. Analyze the Target System

Before starting the migration, ensure the target system supports the following:

  • KB Articles: The system should have an equivalent data structure for KB Articles.
  • Attachments: Ensure the target system can handle attachments and metadata such as filenames and file types.

2. Export KB Articles and Attachments from CRM

In Dynamics 365 CRM, KB Articles are stored as records in the KnowledgeArticle entity. Attachments are stored in the Annotation entity.

Option A: Use Power Automate or Power Platform Dataflows

  1. Export KB Articles:
    • Use Dataverse (Common Data Service) connector in Power Automate to extract KB Articles from the KnowledgeArticle table.
    • Export key fields such as:
      • Title
      • Content
      • Author
      • Keywords
      • State (Published/Draft)
      • Created On / Modified On
  2. Export Attachments:
    • Extract the corresponding records from the Annotation table where the objectid field links to the KnowledgeArticleId.
    • For each attachment:
      • Save the notetext (description), filename, and the encoded file (documentbody).
  3. Store Data:
    • Save the exported data (articles and attachments) in a structured format like CSV, JSON, or Azure Blob Storage.

Option B: Use a Third-Party Tool

  • Tools like KingswaySoft, Scribe, or XrmToolBox plugins (e.g., "Attachment Manager") can help you export KB Articles and attachments in bulk.

3. Transform Data for the Target System

  • Clean and prepare the exported data to match the schema of the target system.
  • Convert the CRM-specific fields (e.g., documentbody for attachments, which is base64 encoded) into formats required by the target system.

4. Import KB Articles and Attachments into the Target System

Option A: Use Target System's API

  1. KB Articles:
    • Use the target system’s API to create articles.
    • Map fields from the exported data (e.g., title, content, metadata) to the corresponding fields in the target system.
  2. Attachments:
    • Upload attachments using the target system’s API by:
      • Decoding the documentbody (base64).
      • Attaching the file to the corresponding article.

Option B: Use a File-Based Import

If the target system supports file-based imports:

  1. Prepare files (e.g., CSV, JSON, or XML) for articles and attachments.
  2. Use the target system’s import functionality to upload the data.

5. Validate the Migration

  • Check that all KB Articles have been imported correctly.
  • Ensure that attachments are linked to the correct articles and are accessible.
  • Test article searchability and formatting in the target system.

Sample Power Automate Flow

A high-level view of how to use Power Automate for this migration:

  1. Trigger: Run manually or on schedule.
  2. Action (Dataverse): Fetch records from KnowledgeArticle table.
  3. Action (Dataverse): Fetch related Annotation records for attachments.
  4. Action (Apply to Each):
    • Save articles and attachments to a target storage location or directly post to the target system API.

Custom Migration Tool for Dynamics 365

However, I suggested using a custom console application built with C# to create your own migration tool.

The code leverages the Dataverse Web API along with the Microsoft.Xrm.Sdk and Microsoft.Crm.Sdk namespaces.

Below is the sample implementation:

Prerequisites

  1. Add the following NuGet packages:
    • Microsoft.PowerPlatform.Dataverse.Client
    • Microsoft.CrmSdk.CoreAssemblies
    • Newtonsoft.Json (if needed for API calls to the target system)
  2. Set up an Azure App Registration for authentication to Dynamics 365 CRM.
  3. Provide necessary permissions to the app (Dataverse scope for KnowledgeArticle and Annotation).

Code

using Microsoft.PowerPlatform.Dataverse.Client;
using Microsoft.Xrm.Sdk.Query;
using Microsoft.Xrm.Sdk;
using System;
using System.IO;
using System.Text;
using System.Collections.Generic;

namespace KBMigration
{
    /// <summary>
    /// A console application designed to migrate Knowledge Base (KB) Articles
    /// along with their related attachments from Dynamics 365 CRM to a local directory.
    /// </summary>
    class Program
    {
        static void Main(string[] args)
        {
            // Step 1: Initialize the connection to the Dataverse (Dynamics 365) CRM
            string connectionString = "AuthType=OAuth;Url=https://yourorg.crm.dynamics.com;Username=yourusername;Password=yourpassword;AppId=your-app-id;RedirectUri=your-redirect-uri;";

            try
            {
                // Establish a service client to interact with CRM
                var serviceClient = new ServiceClient(connectionString);

                // Check if the connection is successful
                if (!serviceClient.IsReady)
                {
                    throw new InvalidOperationException("Failed to connect to CRM. Please check your credentials and network connection.");
                }

                Console.WriteLine("Connected to CRM successfully!");

                // Step 2: Retrieve and process KB Articles
                var articles = RetrieveKBArticles(serviceClient);

                if (articles.Entities.Count == 0)
                {
                    Console.WriteLine("No KB Articles found in CRM.");
                }
                else
                {
                    foreach (var article in articles.Entities)
                    {
                        Guid articleId = article.Id;
                        string title = article.GetAttributeValue<string>("title");
                        string content = article.GetAttributeValue<string>("content");

                        Console.WriteLine($"Processing Article: {title} (ID: {articleId})");

                        var attachments = RetrieveAttachments(serviceClient, articleId);
                        SaveArticleAndAttachments(articleId, title, content, attachments);
                    }
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine($"An error occurred: {ex.Message}");
            }
        }

        static EntityCollection RetrieveKBArticles(ServiceClient serviceClient)
        {
            // Implementation for retrieving KB Articles
        }

        static EntityCollection RetrieveAttachments(ServiceClient serviceClient, Guid articleId)
        {
            // Implementation for retrieving attachments
        }

        static void SaveArticleAndAttachments(Guid articleId, string title, string content, EntityCollection attachments)
        {
            // Implementation for saving articles and attachments
        }
    }
}
        

Potential Enhancements

  • Retry Logic: Add logic for retrying failed operations (useful for network-related errors).
  • Pagination Handling: If there are too many KB Articles or attachments, implement pagination to handle large datasets efficiently.
  • Parallel Processing: Consider parallel processing to speed up the migration (using Task.WhenAll or Parallel.ForEach).

Key Considerations

  1. Authentication

    Use Azure Active Directory authentication for security (replace Username/Password with ClientSecret for production).

  2. Scalability

    For large datasets, consider using pagination with RetrieveMultiple.

  3. Custom Fields

    If you have custom fields in KB Articles, include them in the ColumnSet.

  4. Migration to Target System

    Replace the SaveArticleAndAttachments method with an API call or logic to import the data into your target system.

Example of Advanced UI customization in PowerApps, using custom HTML, CSS, and JavaScript

PowerApps Canvas Apps Customization

PowerApps Canvas Apps allow limited customization directly with HTML, CSS, and JavaScript. However, you can use HTML Text Controls, integrate PowerApps Portals for advanced customization, or use Power Automate with Azure Functions for JavaScript-like logic. Here's an example of advanced UI customization using HTML web resources in a PowerApps Canvas App:

Scenario

Create a responsive and visually appealing data table with Search/Filtering Functionality using advanced HTML and CSS styling embedded in a PowerApps Canvas App.

Steps to Implement

1. Design Your HTML/CSS Web Resource

Create an HTML file with embedded CSS for a styled table. Save it as a web resource in your Dataverse environment.

Example HTML (HTML File):

<!DOCTYPE html>
<html>
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    .custom-table-container {
      margin: 20px;
      overflow-x: auto; /* Enables horizontal scrolling on smaller screens */
    }

    .search-container {
      margin: 10px 20px;
      text-align: right;
    }

    .search-input {
      width: 100%;
      max-width: 300px;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 16px;
    }

    .custom-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
    }

    .custom-table th,
    .custom-table td {
      border: 1px solid #ddd;
      padding: 10px;
      text-align: left;
    }

    .custom-table th {
      background-color: #0078D7;
      color: white;
    }

    .custom-table tr:nth-child(even) {
      background-color: #f2f2f2;
    }

    .custom-table tr:hover {
      background-color: #ddd;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .custom-table th,
      .custom-table td {
        font-size: 14px;
        padding: 8px;
      }
    }

    @media (max-width: 480px) {
      .custom-table th,
      .custom-table td {
        font-size: 12px;
        padding: 6px;
      }

      .custom-table-container {
        margin: 10px;
      }
    }

    @media (max-width: 320px) {
      .custom-table th,
      .custom-table td {
        font-size: 10px;
        padding: 4px;
      }
    }
  </style>
</head>
<body>
  <div class="search-container">
    <input
      type="text"
      id="searchInput"
      class="search-input"
      placeholder="Search the table..."
      onkeyup="filterTable()"
    />
  </div>

  <div class="custom-table-container">
    <table class="custom-table" id="dataTable">
      <thead>
        <tr>
          <th>ID</th>
          <th>Name</th>
          <th>Value</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>1</td>
          <td>John Doe</td>
          <td>100</td>
        </tr>
        <tr>
          <td>2</td>
          <td>Jane Smith</td>
          <td>200</td>
        </tr>
        <tr>
          <td>3</td>
          <td>Sam Wilson</td>
          <td>150</td>
        </tr>
        <tr>
          <td>4</td>
          <td>Sara Connor</td>
          <td>180</td>
        </tr>
      </tbody>
    </table>
  </div>

  <script>
    function filterTable() {
      // Get the input field and its value
      const input = document.getElementById("searchInput");
      const filter = input.value.toUpperCase();

      // Get the table and rows
      const table = document.getElementById("dataTable");
      const rows = table.getElementsByTagName("tr");

      // Loop through all rows (skip the header row)
      for (let i = 1; i < rows.length; i++) {
        const row = rows[i];
        let isVisible = false;

        // Check each cell in the row
        const cells = row.getElementsByTagName("td");
        for (let j = 0; j < cells.length; j++) {
          const cell = cells[j];
          if (cell) {
            const text = cell.textContent || cell.innerText;
            if (text.toUpperCase().indexOf(filter) > -1) {
              isVisible = true;
              break;
            }
          }
        }

        // Show or hide the row based on the match
        row.style.display = isVisible ? "" : "none";
      }
    }
  </script>
</body>
</html>

2. Add a JavaScript File for Dynamic Data

Create a JavaScript file that injects data dynamically into the table.


function populateTable(data) {
  const tableBody = document.getElementById("data-table").querySelector("tbody");
  tableBody.innerHTML = ""; // Clear existing rows

  data.forEach(row => {
    const tr = document.createElement("tr");
    Object.values(row).forEach(value => {
      const td = document.createElement("td");
      td.textContent = value;
      tr.appendChild(td);
    });
    tableBody.appendChild(tr);
  });
}

3. Host the HTML/JS Resources

  • Upload the HTML and JavaScript files as web resources in Dataverse.
  • Copy the URLs of the hosted files.

4. Embed HTML in PowerApps

  1. Add an HTML Text Control in your Canvas App.

  2. Embed the URL of your hosted HTML file inside the control.

    Example for the HTMLText property:

    "<iframe src='https://<your-hosted-html-file-url>' width='100%' height='400px' frameborder='0'></iframe>"

5. Pass Data from PowerApps to HTML

To dynamically populate the table:

  1. Add a Power Automate Flow or use an API to pass the data to your web resource.
  2. For example, use the following pattern in your Canvas App:

    Set(dataPayload, JSON(DataSource));
    HtmlTextControl.HtmlText = 
        "<script>" & "populateTable(" & dataPayload & ");" & "</script>";

Key Features

  • Table columns dynamically.
  • Case-insensitive search.
  • Responsive layout for both the search bar and table.

Thanks for visiting!

Monday, July 13, 2020

Dynamics 365: Set Lookup Field To Current User on Selection of an OptionSet using JavaScript

Approval Type Scenario

Approval Type Automation in PowerApps

Yesterday, one of my LinkedIn connections asked me to help with a business scenario:

Business Scenario

The scenario involved two fields in a Business Process Flow:

  • Approval Type (optionset)
  • Approved By (systemuser lookup)

If Approval Type is set to "Approved," the Approved By field should automatically set its value to the current logged-in user.

Implementation in PowerApps Model-Driven App

You can achieve this functionality using a combination of JavaScript and event handlers. Here's how:

Steps to Implement:

  1. Create a JavaScript Web Resource:
    • Go to Solutions in the PowerApps Maker portal.
    • Add a JavaScript web resource to your solution.
    • Write JavaScript code to check the value of the Approval Type field and set the Approved By field to the current logged-in user.
  2. Add the Script to the Form:
    • Open the entity form where the Approval Type and Approved By fields exist.
    • Go to Form Properties.
    • Add the JavaScript web resource you created to the form.
  3. Add an Event Handler:
    • In the same Form Properties, go to the Event Handlers section.
    • Attach the setApprovedByOnApprovalTypeChange function to the OnChange event of the Approval Type field.
    • Ensure you pass the executionContext to the function.
  4. Publish Customizations:
    • After adding the event handler, save and publish the form.

Sample Code Snippet


function setApprovedByOnApprovalTypeChange(executionContext) {
    var formContext = executionContext.getFormContext();

    // Get the value of the Approval Type field
    var approvalType = formContext.getAttribute("approvaltype").getValue(); // Replace 'approvaltype' with your field's schema name

    // Check if Approval Type is "Approved" (value may vary based on your option set)
    if (approvalType === "Approved") { // Replace with the correct option value for "Approved"
        // Get the current logged-in user
        var currentUserId = Xrm.Utility.getGlobalContext().userSettings.userId;
        var currentUserName = Xrm.Utility.getGlobalContext().userSettings.userName;

        // Set the Approved By field
        formContext.getAttribute("approvedby").setValue([
            {
                id: currentUserId,
                entityType: "systemuser",
                name: currentUserName
            }
        ]);
    } else {
        // Clear the Approved By field if Approval Type is not "Approved"
        formContext.getAttribute("approvedby").setValue(null);
    }
}

        

Thursday, August 30, 2018

Top 250+ Microsoft Dynamics 365 Interview Questions ONLY

Microsoft Dynamics 365 Interview Questions

Microsoft Dynamics 365 Interview Questions

General Overview

  1. Tell me something about Dynamics CRM.
  2. Tell me something about Dynamics CRM Architecture.
  3. Tell me something about Dynamics CRM Deployment Models.
  4. Tell me the differences between Dynamics CRM – Online and On-Premises Deployment.
  5. Tell me something about Dynamics 365 On-Premises licensing.
  6. What is Multi-Tenancy in Dynamics CRM?

Authentication and Installation

  1. What is the E-mail router in Dynamics CRM?
  2. What are the User Authentication Models of Dynamics 365?
  3. On install of Dynamics CRM, what databases are created?
  4. On install of Dynamics CRM, what user groups are created in Active Directory?

Data and Entity Management

  1. What Tables are affected when a new User is created in Dynamics CRM?
  2. Certain users are complaining that they are unable to log in to CRM after organization export/import. What could be the reason?
  3. What are the types of Entities in Dynamics CRM?

Forms and Views

  1. What are Forms in Dynamics 365?
  2. What are Dynamics CRM Form Properties?
  3. What are the available JavaScript Events in Dynamics CRM?
  4. What are Turbo Forms in Dynamics CRM 2015 Online Update 1 and CRM 2016 On-Premise?
  5. What are the types of Views available in Dynamics CRM?

Development and Customization

  1. FetchXML in Dynamics 365 CRM
  2. Actions in Dynamics CRM
  3. Dialogs in Dynamics CRM
  4. When is a Dialog useful in Dynamics CRM?
  5. What is a Solution in Dynamics CRM?
  6. How to move the Main Form Only from a CRM instance to another instance?
  7. Converting Managed Solution to Unmanaged Solution in Dynamics CRM?

Web Services and APIs

  1. Dynamics CRM - Web Services
  2. Difference between CRM webservice and CRM.SDKProxy namespaces?
  3. SOAP vs. REST Endpoints Services in Dynamics CRM
  4. What is early binding and late binding? How is it used in CRM?

Troubleshooting and Best Practices

  1. Dynamics CRM Pending Send Status Emails Troubleshoot
  2. Best practices for activities and notes in Dynamics 365
  3. Dynamics CRM is down and not working. Common Causes to Check?

Security and Access

  1. Tell me something about the Security model of Dynamics CRM.
  2. What are the fundamental units of the security model of Dynamics CRM?
  3. What are some best practices for designing a security model in Dynamics CRM?
  4. How do Business Unit and Security Role define the security structure of Dynamics CRM?
  5. Access Dynamics CRM from an external application.

Entities and Fields

  1. How many ways to hide a field in a CRM form?
  2. What are Dynamics CRM Field Types and Data Types?
  3. What are Dynamics CRM Field Properties?
  4. Rollup Fields in Dynamics CRM.

Customization and Configuration

  1. How do you estimate CRM customizations?

Processes and Workflows

  1. Dynamics 365 Process Categories?
  2. How would you implement Recurring Task Activities using Workflows in Dynamics 365?
  3. How would you implement Recursive Workflows in Dynamics 365?
  4. Business Process Flow Stage Name in Dynamics 365.

Plugins and Development

  1. How many possible ways to register a Plug-in in Dynamics CRM?
  2. Plug-in Assembly Table in Dynamics CRM.
  3. How to move the Production CRM database into Development or Testing?
  4. What development tools do you use for CRM development?

Reporting and Analytics

  1. Reporting in Dynamics 365.
  2. Scheduling Reports in Dynamics CRM 2016 On-Premise.
  3. Scheduling Reports in Dynamics 365 Online.
  4. Advanced Find and Reports in Dynamics CRM.
  5. Creating an Audit Report for User Logins in Dynamics CRM.
  6. Activity Reporting gotchas in Dynamics CRM.

Data Migration and Performance

  1. Overcome CRM Slowness and Optimization of Performance in Dynamics CRM.
  2. Data Migration Testing Best Practices in Dynamics 365.

Active Directory and Customization

  1. Should my Active Directory Domain have Microsoft Exchange Server installed in it?
  2. What is Customization vs. Configuration?

Entity Management

  1. On the creation of an Entity, how many Tables are created at the backend?
  2. On the creation of an Entity, how many Forms, Fields, and Views are automatically created?
  3. After creating a new Entity, what are the things that you do? Explain as per your experience.
  4. How many fields can you create in an Entity?
  5. How to restrict any 'Entity Field' from being shown in Advanced Find?
  6. How to restrict any 'Entity Field' from being shown in Advanced Find using a Field Security Profile?
  7. How to restrict an 'Entity' from being shown in Advanced Find?

Security and Access

  1. How can you provide access level as only “None” or “Organization Level”?
  2. What is the difference between Role-Based and Object-Based Security Models?
  3. What is the difference between Business Units and Teams?
  4. Have you ever used the Hierarchical Security Model? What was the business reason?
  5. What is Field Level Security?
  6. What is the behavior of Field Level Secured Fields?
  7. What are 'Append' and 'Append To' privileges?
  8. How would you prevent a user from Activating or Deactivating a Record?

Teams and Access

  1. What is the difference between Owner Teams and Access Teams?
  2. Explain scenarios where you would use Owner Team vs. Access Team.
  3. How many types of Access Teams are available?
  4. What are the PROS and CONS of Access Teams' performance?
  5. What is the PrincipalObjectAccess table, and why is it used?

Entity Relationships

  1. What are the Entity Ownership Types?
  2. What is the Virtual Entity feature?
  3. Can you list a few limitations of Virtual Entities?
  4. What is the difference between Organization-Owned and User/Team-Owned Entities?
  5. When should you repurpose System Entities vs. creating Custom Entities?
  6. Explain Entity Relationships.
  7. What is Relationship Behavior?

Forms and Views

  1. Can you give examples of useful Data Field Types?
  2. What is a Read-Only or Read-Optimized Form?
  3. How many ways can you hide a form?

Miscellaneous Topics

  1. Files and how they are stored in Dynamics 365/CRM
  2. Where can I find the attachment files from emails in the CRM database?
  3. Multi-Select Option Set Limitations in Dynamics 365 CRM?
  4. Full Text Search (CRM On-Premises Only)
  5. Did you use any Automated Testing in Dynamics CRM Testing Strategy?
  6. Difference b/w Dynamics 365 (on-premises) and Dynamics CRM 2016 (on-premises)
  7. Dynamics CRM 2016 (On-Premise) vs Dynamics 365 CRM
  8. What tool do you use for Wireframing Dynamics 365?
  9. Do you have a few key best practices someone considering CRM can use?
  10. How do you keep up with Microsoft Dynamics CRM news?

Enhancing Model-Driven App Views with Custom Column Icons

Enhancing Model-Driven App Views with Custom Column Icons A Hidden Feature That Can Make Your Views Much More User-Friendly I came acro...