Dynamics CRM 2016 modify list of activities views

心已入冬 提交于 2019-12-10 10:05:05

问题


I am very new to MS Dynamics. I am using dynamics CRM 2016 and I need to remove, in the activities page, the views about entities that I am not using such as Campaign Response, Campaign Activity, etc.

I do not see them in the list of views of the Activity entity in my solution, so I cannot remove them from there, am I missing something? Is there a way to remove those views?


回答1:


Its possible. I found the way to do it finally after just 3 days of research.

Open your CRM web in XRM Tool kit (download if not having it) XRM toolkit access your org using url and login. Assuming you have privilege access. Load all web resources and scroll down to find "activitypointer_ribbon_home.js" Add below lines of code into the file, finally Save and publish to make it available for all users. Whoa.. it works like charm !!!

hideactivitiesview() // call under onload of xrm page; comes in default script of this file

function hideactivitiesview()
{
  var viewSelector = $('#crmGrid_SavedNewQuerySelector')[0];
  if(viewSelector)
  {
    $(viewSelector).click(function(){
      var _activity = $('#ViewSelector_activity')[0]; //get this id from DOM using F12
      if(_activity)
        $(_activity).hide();
      
    });
  }
}



回答2:


Unfortunately you cannot hide/remove those.

Reason: They are not usual views, they are part of System tailored Activity entity family (Activity, Activity Pointer, Activity Party, Custom Activity types, etc).

If you see any Activity entity properties, the checkbox 'Display in Activity Menus' is checked & disabled. This settings is being used for navigation, views, filters, etc.

Even while creating custom activity, this option is enabled & if you forget to check it, that particular Custom Activity type will be hidden from everywhere wherever you are using its siblings (Email, Fax, etc)

If its unchecked, Even Associated view will not be showing this activity under it's regarding Parent record, which is failing the main reason why we are using CRM & activity relationship.

In a nutshell, this setting once enabled, cannot be undone. The activity cannot be distinguished/disabled using security role, because all are of same bucket.

Maybe you can try some unsupported customizations using DOM explorer in javascript & hide it, which I don't recommend. PowerObjects blog talk about renaming it to something to avoid users using it & other options.



来源:https://stackoverflow.com/questions/47779227/dynamics-crm-2016-modify-list-of-activities-views

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!