Tagged Questions
0
votes
2answers
27 views
CRM 2011, how do I create an instance of a custom entity using reflection?
I am picking up a project left over from someone else so I apologize if I don't get this out right.
I need to be able to dynamically create instance of MS CRM objects as needed without necessarily ...
2
votes
0answers
21 views
CRM 2011 PLUGIN - PostTaskSetState
I'm creating a plugin to, when the user set the status of a task in the crm, verify all tasks that are associated with a incident. If, there's no tasks opened, the incident should be closed.
When I ...
0
votes
0answers
32 views
Null error using crmsvcutil with dynamics-crm-online. How do I enable tracing and view the detailed error log?
I'm trying to run crmsvcutil.exe, but I'm a getting a NullReferenceException. I'd like to enable tracing, so I can see what the problem is, but can't seem to find a way to do it. I've searched but ...
-2
votes
1answer
58 views
How i can retrieve the records from the ms crm 2011 offline through C# code?
Have a requirement to create and update the records from ms crm 2011 in a offline state,
can anyone help me
5
votes
4answers
109 views
Deleting users in CRM Dynamics 2011
I'm fully aware that deleting users (SystemUser Entity) in CRM Dynamics 2011 is not supported by Microsoft.
However, we're currently developing a tool to support our User Provisioning needs. In order ...
1
vote
1answer
147 views
How to set Option List value on new CRM 2011 Entity record with Linq?
I'm creating new Entity records in C#. The problem is my early-bound Xrm class is expecting the integer value of the Option List in question, but all I have is the string value of the Option List.
...
0
votes
2answers
63 views
Plugin to fetch the Email Attachment on “Create” plugin of Email Entity in CRM 2011
On creation of Email entity i am triggering a plugin.
Primary Entity: email
Message: Create
Execution Mode: Synchronous
Pipeline: POST-operation(MSCRM 2011 only)
I have two problems:
Problem 1:
...
2
votes
1answer
135 views
Send multipart email (html+plaintext) in Dynamics CRM 2011?
I'm sending out e-mails in Dynamics CRM 2011 UR13 using my plugin with the following code;
// Create the e-mail message
Email email = new Email
{
To = new ActivityParty[] { toParty },
From = ...
1
vote
3answers
347 views
Crm 2011 : Refresh associated Grid View
Is there a way to refresh associated Grid View ?
I have a Sales Order View on the Account Form, on this Form I have a button (New Order) that open a new Sales Order Form, in this form I do my Orders,
...
0
votes
1answer
86 views
Linq to CRM newb help required
Im trying to work with some data in the Dynamics Online of my client. They have some custom elements added by a 3rd party company who arent being at all helpful.
I need to get contacts from the ...
1
vote
2answers
90 views
Dynamic variable in LINQ
I have the following statement in LINQ:
var eventsWithTag = (from occurence in occurrences1
join eventTag in serviceContext.CreateQuery("adx_eventtag_event")
...
0
votes
1answer
38 views
CrmEntityDataSource To CodeBehind Datareader
Im jumping into a project using MS Dynamics and a portal plugin, and am in need with a little help.
On the html side I have a CrmEntityDataSource which collects 1 record. I need to be able to get ...
0
votes
1answer
114 views
Microsoft Dynamics CRM SOAP “The credential is blocked.” When authenticating using Windows Live ID
Hi I'm connecting to dynamics online using SOAP in C# to add custom entities. The login type being used is a windows live account.
I'm running into an odd error when i try and connect to the server ...
0
votes
1answer
62 views
Interact with non standard control via codebehind
I'm using a CMS plugin with Microsoft Dynamics which features its own controls etc.
I have the following control within a listview, that I need to detect and then potentially update from the ...
0
votes
2answers
105 views
Writing to incidents in C#
I am using CRM 4 and the SDK to grab cases like so:
public List<Case> GetCases()
{
List<Case> cases = new List<Case>();
#region Retrieve Resolved Cases
...