Public Profile
  • Query Builder Error "The specified field does not exist in Microsoft Dynamics CRM."

    After deleting the fields from entity we get a Query Builder Error "The specified field does not exist in Microsoft Dynamics CRM." While trying to audit history of previously created records.

    Looking for a feature so it shoe the audit history of those specific records without deleting the any audit history.

  • Unable to customize "Quick Form" of phone call entity in CRM 2013

    Unable to customize "Quick Form" of phone call entity due to Properties State = 'Managed' and Customizable = 'False'

    User should able to customize "Quick Form" of phone call entity

  • Marketing List member count not display correct count in CRM 2013

    Issue
    -------------
    Count of records associated to marketing list and displayed by 'Members Count' are incorrect in CRM 2013
    Marketing List has 100 members added but in the 'Member Count' Field that display <> 100
    Creating new Marketing List with same records resolved the issue.
    SQL Query that pull 'Member Count' (as per current design)
    ---------------------------------------------------------------------
    Select MemberCount From ListBase Where ListName = '<Marketing_List_Name>'

    SQL Query that will pull correct 'Member Count' (need to be updated)
    -------------------------------------------------------------------------------
    Select Count(CB.FullName ) From ContactBase CB, ListBase LB, ListMemberBase LMB
    Where CB.ContactId =LMB.EntityId and LB.ListId = LMB.ListId and LB.ListName = '<Marketing_List_Name>'