Got this issue while configuring Microsoft Dynamics CRM for Outlook for CRM Online.

It was because of the following service being disabled.

Enabling the service resolved the issue.
Hope it helps.
Got this issue while configuring Microsoft Dynamics CRM for Outlook for CRM Online.

It was because of the following service being disabled.

Enabling the service resolved the issue.
Hope it helps.
Hi,
At times we have got this error while saving our record in CRM. It can occur if we have mistakenly registered steps of one of our plugins to some other plugins. Please check in plugin registration tool and delete those steps.
Hope it helps.
Earlier

Now
Added Support for Date and Lookup fields.

Earlier

Now
Support for contextual URL.

Earlier

Now
Adding Series and Category.

Earlier

Now
Option for Inserting Hyperlink

Earlier

Now
Audit User Access

http://msdn.microsoft.com/en-us/library/hh547392.aspx
Improvements in Duplicate Detections
Get the complete detail here
Hope this helps.
Hi,
Let us see what all features are there in the Activity Feeds.
We can see a new link added above Dashboard in “My Work” area


The other place it appears is the Sales area.

Let us go to Settings:-
There we see two new entries: – Activity Feeds Configuration and Activity Feeds Rules.

Let us create a new Activity Feeds Configuration (Post Configurations) record.
For Entity Name, we need to enter the schema name of our entity and we can also select the check box that enables walls for those entity records.

After saving the record the two new rules “New lead created” and “A lead has been qualified” automatically gets added to the record.
A small alert in the record also informs us to publish the related entity, so let us publish the lead entity.
No opening our lead record shows a new Record Wall link in the information section.


Clicking on Follow adds the user as the follower

Now let us qualify the lead record, which is one of the activity feed rule that got auto created.
Going back to “What’s New” link shows us that information in our wall.

Now let us open the same lead record, activate it and submit a post or “Share an insight“


This information would also appear in our “What’s New” wall.
We can also add comments in our lead record.

Now suppose I open another lead record and start following it. And now I change something in that record, and then check my wall.
Here I won’t see any update in my wall. This is because of the rule that was defined in the “Post Configuration”

Only when the rule is qualified the update would be available.
Can we define a new rule over there?
It seems that we can only activate or deactivate rule, we can’t add a new one.

Now let us check if we can define Post Configuration for a custom entity or not?
I created a new post configuration record for my custom map entity.

After publishing the entity and opening one of its records I can see the Record Wall link for it.

Now let us check what kind of updates can I receive for my custom entity, as there are no out of the box rules created for it while creating post configuration record for it.
Say I deactivate a map record and then check my wall. I don’t see any update over there which is expected as no rules are defined.
Suppose I write something on Record’s Wall and post it.

It should be available on my wall.
As expected it is.

Similar to records we can also follow system user entity. The post configuration record for the System User automatically got created.

Now let us check the other option Activity Feeds Rules in our system settings.

It contains the feed rules which automatically got created when we defined the Post Configuration rule on lead entity. And again we can only activate and deactivate rules from here; we can’t create a new one.
The What’s new page also shows
auto posts :- the post based on rule.
user posts :- the post on record’s wall.

Clicking on “2 leads” link opens up a view showing the leads records I follow


The edit button gives up an option to upload the profile picture

To summarize,
Hi,
Just a few days back came to know from my friend that a new ribbon editor tool was has been released.
http://erikpool.blogspot.com/2011/10/new-crm-2011-ribbon-editing-tool.html
So thought of giving it a try.
After using it for few days I can easily say that this is exactly the tool many of us would have been waiting for ribbon editing.
There are other posts as well in the Erik Pool’s blog for understanding how exactly ribbon can be customized. Do have a look at them.
http://erikpool.blogspot.com/2011/10/understanding-crm-ribbon-xml-part-3.html
Bye.
Hi,
Wrote a simple plugin to check the value of InputParameters being passed on update of lead record.
public void Execute(IServiceProvider serviceProvider)
{
IPluginExecutionContext context = (IPluginExecutionContext)serviceProvider.GetService(typeof(IPluginExecutionContext));
Entity myEntity = (Entity)context.InputParameters["Target"];
// Get the attribute collection
AttributeCollection myAttColl = myEntity.Attributes;
// Write in a log file
TextWriter log = TextWriter.Synchronized(File.AppendText(@"C:\InputParameterLog.txt"));
log.WriteLine("Log generated at " + DateTime.Now);
log.WriteLine();
foreach (KeyValuePair<string, object> myKV in myAttColl)
{
log.WriteLine("Key - " + myKV.Key);
if (myKV.Value == null)
{
log.WriteLine("Value - null");
}
else if (myKV.Value.GetType()== typeof(EntityReference))
{
EntityReference eRef = myKV.Value as EntityReference;
log.WriteLine("Id - " + eRef.Id.ToString());
log.WriteLine("Logical Name - " + eRef.LogicalName);
log.WriteLine("Name - " + eRef.Name);
}
else if (myKV.Value.GetType() == typeof(OptionSetValue))
{
OptionSetValue oSetValue = myKV.Value as OptionSetValue;
log.WriteLine("OptionSetValue - " + oSetValue.Value);
}
else
{
log.WriteLine("Value - " + myKV.Value.ToString());
}
log.WriteLine();
}
log.WriteLine();
log.Close();
}
Haven’t tested it though, might be useful while debugging.
Bye.