Updated SDK Version 5.0.7 available


The updated version of the SDK is available for download CRM 2011 SDK 

IETester Tool for testing applications in different versions of IE.


Recently we had built a web application using ASP.NET MVC 3, and had used Regular Expression for checking of password strength.

“^(?=.*[(\W)_]).{8,}$”

The above expression checks for password length to be minimum 8 characters and one special character.

It was working fine in IE 8 and IE 9. However we had our users using IE 7 as well, in which it was not working properly. As we were having our machine running Windows 7 and Windows Server 2008, it was not possible to have IE 7 installed in it. However recently going through one of the blog I have subscribed to I came to know about a tool which we can use to test our application in IE 7.

IE Tester tool:-

http://www.my-debugbar.com/wiki/IETester/HomePage

The helpful post:-

http://blog.customereffective.com/blog/2011/10/crm-2011-cases-knowledgebase-articles-and-ie-7.html

Hope it helps.

Cleared MB2 866 Microsoft Dynamics CRM 2011 Customization and Configuration Exam


Today I cleared my first CRM 2011 certification exam. It had total 75 questions and duration was of 140 minutes.

One thing different from CRM 4.0 or CRM 3.0 exams was that the in the case of multiple choice questions, there were no “select 2” or “select 3” correct answers, it was “Select all that apply”. In some cases i think there was only one correct answer for “Select all that apply” questions.

Well, talking about topics, there were more than 15 – 20 questions on Solutions only, especially managed solution and managed properties followed by around 10 questions on Audit and Field Security. Then few around new features in Business Unit, Teams and Security Roles.

Go through the helpful tips given here

http://www.dynamicscrmtrickbag.com/2011/09/12/preparing-for-exam-mb2-866-microsoft-dynamics-crm-2011-customization-and-configuration/

And following is the link to the posts that I used as notes while preparing for the exam.

https://nishantrana.wordpress.com/category/crm/crm-2011/new-features/

Hope it helps.

Changes in System Setting in CRM 2011.


The number of tabs has increased from 7 to 10 in CRM 2011 from CRM 4.Preview post

The new tabs added are

Calendar, Auditing and Goals.

Now let’s first start with the General Tab and options therein.

GENERAL TAB:-

There are two more options added in CRM 2011 in General tab are

The Get Started Pane in CRM 2011.

IM Presence can be set from General system settings.

CALENDAR:-

If we try saving an appointment record with duration more than 10 days we get the warning that “duration of the appointment is invalid”


There was no such option in CRM 4.0.

FORMAT:-


No change here.

AUDITING:-

From here we can enable auditing for the system. This feature was not there in CRM 4.0.


E-MAIL:-

CRM 4:-


CRM 2011:-


The new feature is setting option for Use Smart Matching. It is very nicely explained here

http://mscrmspot.blogspot.com/2011/05/crm-e-mail-setting-deep-dive.html

MARKETING:-

No changes in CRM 2011.


CUSTOMIZATION:-

In CRM 4


We could set the Prefix here in CRM 4, now this option has moved to Solutions where we can define prefix for Publisher of the solution.

Custom menus and toolbars: – This can be governed through RibbonDiffXml for entities and Application Ribbon for the application.

In CRM 2011, the only option is of Application mode.

OUTLOOK:-

Things are same for CRM 4 and CRM 2011, the only new option in CRM 2011 is whether user sees get the outlook client message in the Message bar or not.


REPORTING:-

No changes in Reporting tab


GOALS:-

Goals is a new feature in CRM 2011.


Check this wonderful post on system settings:-

http://www.avanadeblog.com/xrm/2010/12/crm-2011-feature-of-the-week-system-systems-whats-new.html

Hope it helps.

Account Search based on account name through a ribbon button on account grid in CRM 2011


Hi,

Just created a simple managed solution that will show a button on Account’s grid. It will only get enabled when only one record is selected in grid otherwise it would remain disabled.

For that we can use SelectionCountRule in our EnableRule definition.

On click of button we are calling a JavaScript function and passing guid of the record selected using CrmParameter as the part of JavaScriptFunction Action.

The JavaScript function uses that guid, makes a OData call and retrieves the account name and passes that account name as a query parameter to google search url and uses window.open method to open the page.

RibbonDiffXml for that:-

<RibbonDiffXml>
        <CustomActions>
          <CustomAction Id="MyOrg.CustomAction" Location="Mscrm.HomepageGrid.account.MainTab.Collaborate.Controls._children" Sequence="1">
            <CommandUIDefinition>
              <Button Id="MyOrg.Button" ToolTipTitle="Search in Google" ToolTipDescription="Search detail of the account selected" Command="MyOrg.Command" Sequence="1" LabelText="Search in Google" Alt="Search in Google" Image16by16="$webresource:new_search16" Image32by32="$webresource:new_search32" TemplateAlias="o1" />
            </CommandUIDefinition>
          </CustomAction>
        </CustomActions>
        <Templates>
          <RibbonTemplates Id="Mscrm.Templates"></RibbonTemplates>
        </Templates>
        <CommandDefinitions>
          <CommandDefinition Id="MyOrg.Command">
            <EnableRules>
              <EnableRule Id="MyOrg.EnableRule"></EnableRule>
            </EnableRules>
            <DisplayRules />
            <Actions>
              <JavaScriptFunction Library="$webresource:new_search" FunctionName="search">
                <StringParameter Value="Guid Selected"></StringParameter>
                <CrmParameter Value="SelectedControlSelectedItemIds"></CrmParameter>
              </JavaScriptFunction>
            </Actions>
          </CommandDefinition>
        </CommandDefinitions>
        <RuleDefinitions>
          <TabDisplayRules />
          <DisplayRules />
          <EnableRules>
            <EnableRule Id="MyOrg.EnableRule">
              <SelectionCountRule AppliesTo="SelectedEntity" Maximum="1" Minimum="1"></SelectionCountRule>
            </EnableRule>
          </EnableRules>
        </RuleDefinitions>
        <LocLabels />
 </RibbonDiffXml>
 

JavaScript:-

function search(message,value)
{
var  Id = value;
var serverUrl = Xrm.Page.context.getServerUrl();
var ODataPath = serverUrl + "/XRMServices/2011/OrganizationData.svc";

var retrieveAccountReq = new XMLHttpRequest();
retrieveAccountReq.open("GET", ODataPath + "/AccountSet(guid'" + Id + "')", false);
retrieveAccountReq.setRequestHeader("Accept", "application/json");
retrieveAccountReq.setRequestHeader("Content-Type", "application/json; charset=utf-8");

retrieveAccountReq.onreadystatechange = function () {
  retrieveAccountReqCallBack(this);
 };

retrieveAccountReq.send();
}

function retrieveAccountReqCallBack(retrieveAccountReq) {

  if (retrieveAccountReq.readyState == 4) {
  if (retrieveAccountReq.status == 200) {

 var accountName = eval('('+retrieveAccountReq.responseText+')').d.Name;
 window.open("http://www.google.com/search?q="+accountName);
}
  else {
     alert("Call Failed.");
  }
 }
}

The managed solution:-

https://nishantrana.me/wp-content/uploads/2011/10/accountsearch_1_0_0_0_managed.doc

Just change the extension to zip from doc.

Hope it helps!

 

Field Security in CRM 2011 – New Features.


Hi,

Field Security in a new out the box feature in CRM 2011. The most important thing to know about it is that Field Security doesn’t work on out of the box attributes. It only supports custom attributes on system entity or custom entity.

Let us open one of the out of the box fields on Contact entity from customization area.

As we can see the radio buttons for Field Security are disabled. However there is some unsupported way to get that enabled for out of the box attributes

http://weblogs.asp.net/gayanperera/archive/2010/11/02/crm-2011-field-level-security-for-oob-attributes.aspx

Let us create a custom field named “Password” (text) in our contact entity and enable field level security for it.

Dragging it to the form shows a “key” symbol beside it.

If a user with System Administrator role opens the record, he would be able to view, add a value and update the value for the password field.

If a user with role other than system administrator opens the same record, this is what he gets to see

The field level security is governed through Field Security Profiles.

Opening Field Security Profiles we can see that the System Administrator is already added over there.

If we try to delete it, we get the following error message.

We can add users and teams to security profile.

The specific points to remember about the System Administrator Security Profile are following

  • It has System Administrator user account added by default.
  • Has all the field permission set to Yes for all security enabled fields.

  • Any user or team with System Administrator role automatically gets added here, and these automatically added user or team cannot be removed. However it can have other users or team also added to it, which can be removed.

Users who do not have the System Administrator Security Role have no permissions on secured fields unless the users are added to a Field Security Profile (either directly or through team membership). Any user who has no permissions on a secured field will still be able to see the field on a form or in field selection lists for a view, but will not be able to see or change the data in the field. On a form, the field will appear with dots in place of any data.”

Talking about field permission, there are three field level permissions.

Read, Update and Create. They are independent of each other i.e. it is not necessary to have read permission to have update permission.

To understand it more clearly let us create new security field profile named “Test Security Profile”, add a user (test user) other than System Administrator to it. By default the field permissions would be set as No.

Let us edit it and set Read as Yes.

Now on opening the contact record with the test user who has been added to this profile, we can see the following changes now

The value of the password field is visible to the user. But it is disabled so can’t be edited. It remains disabled in case of new record as well.

What if we set Yes for Allow Update and No for Read and Create?

In that case, the field appears blank but it is editable.


If we update the field with some value, after save the field again goes blank.

However for the System Admin user we can see the updated value.

Now let us look at how Field Security and Security Roles apply.

Suppose user A has read access to records of a particular Entity record, and then we create a Security Profile that has Read and Update set as Yes for a particular field for that entity and add the user A to it. Here User A would not be able to edit the field because of the restriction put by Security Role.

One thing to remember is that through Field Security Profiles we won’t be able to increase the access of user then what he has got through his security role.

Suppose user A shares a record with user B and gives him Read access. The user B is also part of a security profile that gives him read and update access on a particular field for that entity’s record. Here the User B will be able to see the value of that particular field as he has been given Read access by user A through sharing but he won’t be able to update it.

There is one more thing we should be aware of i.e. Sharing Secured Fields just like sharing records.

We can add user or team with whom we want to share the secured fields. Here we can only set Read and Update, no Create because to Shared Fields apply for Shared Records which are already created.

By share secured fields, permissions granted through sharing can be selectively reduced for secured fields.

Connie shares a contact record with Patricia. The share permissions are read and write. Patricia also has read and update permissions on a custom field in the entity. When Patricia views the form for the record, she finds she can change the custom field. Connie then adds an entry in Share Secured Fields for the record that grants Patricia only read access to the custom field. Now when Patricia views the form, she cannot update the custom field. It also allows permissions to be increased over those granted through Field Security Profiles” (from Microsoft’s CRM 2011 training material)

It also allows permissions to be increased over those granted through Field Security.

“Jose shares a record with Chris, granting read and write share permissions. Chris has no access to a secured field through any Field Security Profiles. When Chris views the record in the form, he cannot change the value of the secured field. Jose then adds an entry for Share Secured Fields granting Chris update permissions on the secured field. Chris can now change the value of the secured field on the record.” (from Microsoft’s CRM 2011 training material)

A record does not have to be shared with a user in order to grant shared secured field permissions.

The permissions required to share fields can be set on the Business Management tab of the Security Role under Field Sharing.

Hope it helps.

Nishant Rana's Weblog

Everything related to Microsoft .NET Technology

Skip to content ↓