Answered by:
MS CRM 2011: Disable Notes on Lead

Question
-
Hi,
I want to disable notes section on Leads on certain conditions.
How can achieve it?
Regards,
Arun
Wednesday, October 17, 2012 8:43 AM
Answers
-
Hi ,
We are hiding section using follwing snippet
Code snippet to hide or show a section on the entity form in CRM 2011 To show a section : Xrm.Page.ui.tabs.get("yourtabname").sections.get("your section name").setVisible(true); To hide a section: Xrm.Page.ui.tabs.get("yourtabname").sections.get("your section name").setVisible(false);
or else
We can use role based forms in crm 2011.T know about role based forms http://www.powerobjects.com/blog/2010/12/07/microsoft-dynamics-crm-2011-role-based-forms/
and also you have to modify security roles for note entity based on your requirement.
- Proposed as answer by SASANK K (MCTS) Wednesday, October 17, 2012 11:22 AM
- Marked as answer by JLattimerMVP, Moderator Tuesday, October 30, 2012 2:14 AM
Wednesday, October 17, 2012 11:21 AM -
Hello Arun,
Recheck following post http://a33ik.blogspot.com/2012/02/playing-with-notes-control.html
- Proposed as answer by _Vikram Wednesday, October 17, 2012 9:04 AM
- Marked as answer by JLattimerMVP, Moderator Tuesday, October 30, 2012 2:14 AM
Wednesday, October 17, 2012 8:45 AMModerator
All replies
-
Hello Arun,
Recheck following post http://a33ik.blogspot.com/2012/02/playing-with-notes-control.html
- Proposed as answer by _Vikram Wednesday, October 17, 2012 9:04 AM
- Marked as answer by JLattimerMVP, Moderator Tuesday, October 30, 2012 2:14 AM
Wednesday, October 17, 2012 8:45 AMModerator -
Hi ,
We are hiding section using follwing snippet
Code snippet to hide or show a section on the entity form in CRM 2011 To show a section : Xrm.Page.ui.tabs.get("yourtabname").sections.get("your section name").setVisible(true); To hide a section: Xrm.Page.ui.tabs.get("yourtabname").sections.get("your section name").setVisible(false);
or else
We can use role based forms in crm 2011.T know about role based forms http://www.powerobjects.com/blog/2010/12/07/microsoft-dynamics-crm-2011-role-based-forms/
and also you have to modify security roles for note entity based on your requirement.
- Proposed as answer by SASANK K (MCTS) Wednesday, October 17, 2012 11:22 AM
- Marked as answer by JLattimerMVP, Moderator Tuesday, October 30, 2012 2:14 AM
Wednesday, October 17, 2012 11:21 AM