Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

LINQ to Dynamics CRM Query filtering records locally

I have written a Linq to CRM query using CRM 2011 RC (v5) LINQ-to-CRM provider. I have a locally declared List<T> which I want to join to a CRM entity and I want the query to be executed on the ...
5
votes
4answers
2k views

Microsoft CRM 2011 and cross browser support [closed]

Does CRM 2011 have cross browser support? Or does it still require Internet Explorer?
5
votes
2answers
2k views

CRM 2011 “$ is undefined”

I have created following code, and I have included this as web resource on the CRM 2011 form to be called on field onchange event of lookup field. Everything is working fine before the $.ajax({... ...
5
votes
3answers
2k views

Call C# Code from Ribbon JScript CRM Online 2011

I need to have some code execute on the click of the ribbon button on an entity that updates some related data from CRM Online 2011. I would prefer not to have to write all of this logic in JScript. ...
4
votes
0answers
109 views

CRM 2011 Online Plugin Uploader to support CI

I'm involved in developing a sandboxed Microsoft Dynamics CRM 2011 Online plugin and have a set of tests that I can drive from a xUnit front end on my local machine given that I right-click the ...
4
votes
1answer
112 views

Why must I use an int when searching for an entity with an OptionSetValue attribute, but use an OptionSetValue object when creating an entity?

I'm seeing an inconstancy with how the CRM SDK treats searching for entities by an OptionSetValue attribute, and creating an entity with an OptionSetValue Attribute. Back Ground: I have a method ...
4
votes
1answer
221 views

CRM 2011, ILMerge and localization

I'm having some trouble merging the localization satellite assemblies into the plugin DLL for CRM2011. Either that, or I don't know how to use the merged resources afterwards. I create a few plugins ...
4
votes
1answer
164 views

MS Dynamics CRM, Web resources (.html) and “custom” Doctype

I'm trying to create heat map on bing maps ajax control using some data from CRM database. For that I created web resource and uploaded it to CRM. I set up button which when clicked open my web ...
4
votes
1answer
275 views

Business Units vs Teams in CRM 2011

I've been told a few times that Business Units in CRM 2011 are "tricky" and shouldn't be set up lightly since they have irreversible consequences for a CRM 2011 implementation. On the other hand, ...
4
votes
2answers
785 views

ADFS (CRM 2011) - Authentication Issue in Microsoft Outlook Client for CRM (Response.Redirect(…) & Window.Open(…))

Before I start, our customers have to connect through AFDS to be able to go on the CRM 2011. So we are talking about an “IFD”-environment. I’m having a problem when using the “CRM 2011 Outlook ...
4
votes
5answers
536 views

Source control for MS Dynamics CRM

I'm undecided about CRM at the moment. It's a great tool for the business users but so far for development it's been a bit against the grain. The next problem I need to tackle is how to easily source ...
4
votes
3answers
4k views

How to update a CRM 2011 Entity using LINQ in a Plugin?

We are able to create new entities without any issues, but updating an existing entity in a plugin this does not appear to be working. This is for CRM 2011. var crmContext = new ...
4
votes
1answer
837 views

How to Refresh the parent Form in CRM Dynamics 5.0 after action is completed on custom child form?

I have a parent form called ISSUE. This Issue form has a button called IG on the Form Ribbon that opens custom Html Page. Now after the Submit button is clicked on the Custom form that performs some ...
3
votes
0answers
132 views

Is it possible to modify ADFS to use NTLM credentials if present to authenticate a user?

We are using CRM 2011 w/ ADFS 2.0. Our users would like for one url to be used for both internal and external users, but w/ the IFD Config in CRM 2011 this is not possible if we also want to use ...
3
votes
1answer
89 views

CrmSvcUtil is only creating OrganizationServiceContext derivants (should be CrmOrganizationServiceContext)

I'm using CrmSvUtil this way: crmsvcutil.exe /url:http://crm2011/MyTestOrg/XRMServices/2011/Organization.svc /out:GeneratedCode.cs /namespace:Xrm /serviceContextName:XrmDataContext And the output ...
3
votes
1answer
82 views

Equivalent to SQL IN clause

I've got an entity called new_trexmail with a string attribute called new_contextline. I'm trying to get a list of entities where new_contextlineis in a defined list. The following code fails with ...
3
votes
1answer
113 views

CRM 2011 workflow size limitations

Are there any limitations on how "big" a CRM workflow can be? I have a workflow which has about 30 steps and it brings the worflow designer to crawl. It takes 2+ minutes to load the designer web page ...
3
votes
1answer
38 views

setting up permissions by “Client Status” field on Client entity

We have a few "Clients" marked as "Employee" in our CRM 2011 system. How would we create a security role to only allow certain users to access client records that have the above criteria? Thanks, ...
3
votes
1answer
123 views

CRM Online 2011 Integration Testing running in Production environment

I'm writing some code for Dynamics CRM Online 2011. I'd like to have a set of integration tests be run in CRM Online and be able to examine: Some log output Assertion failures Under the control ...
3
votes
1answer
498 views

CRM 2011 - Intercepting the Quick search, Fetch xml and query expression don't return the same things?

I'm creating search shortcuts from the quick search box for certain entities. This is to avoid multiple returns especially when a name could contain a city name. (City searches are relevant, so it ...
3
votes
2answers
145 views

In Microsoft CRM 2011, can you create custom address fields on the Account that are mapped back to the address entity?

I have added a custom field to the Address entity. The Account entity has a number of address fields (address1_x..) that eventually somehow map back to the actual Address entity. I would like to add ...
3
votes
1answer
569 views

Calling a dialog in Dynamics 2011 and passing multiple recordIDs to it

I want to allow the user to select one or many contacts from the contact entity, and then launch a dialog that accepts the record IDs. The idea is to add some custom configuration to the contacts. ...
3
votes
2answers
237 views

How to debug jScript for Dynamics CRM?

Are there any tricks or tools for debugging those jScripts that you write in the web resources and attach to an event on a form ? I have to customize a Dynamics CRM 2011 instance, which includes ...
3
votes
1answer
2k views

CRM 2011 - Set value of currency field with javascript

I really can't find how i can retrieve the value from a currency field and set it as a value for another currency field for another entity. My following code is not working: var entities = ...
3
votes
2answers
1k views

CRM 2011 - Assign new owner to appointment. “There should be only one owner party for an activity”

I need to change the owner of an appointment record when creating a new appointment. I'm using a plugin for the create message and i've found this code to assign a new owner to the appointment: ...
3
votes
1answer
872 views

Dynamics CRM 2011 attach file with SDK

I saw a feature in Dynamics CRM 2011 of attaching file to an entity with user interface. How I can attach file using Dynimcs CRM SDK 2011 and C#?
3
votes
4answers
552 views

Plugin with references not working on CRM 2011

I have created a plugin and used a reference to another project (DLL) I have created. The problem is when I try to run the plugin, I get a CRM error saying: Could not load file or assembly 'XXX, ...
3
votes
2answers
854 views

Creating OrganizationServiceProxy in CRM2011 Plugin to use Early binding

We are trying to use early bound types in a CRM2011 plugin. To enable this it appears we need to either add a ProxyTypesBeavior(), or set .EnableProxyTypes. However, both of these properties apply ...
3
votes
4answers
407 views

javascript/jQuery can't find element with messed up id

I'm trying to access an element in MS CRM 2011 with the following id: account|NoRelationship|Form|B_GenerateInvoice-Large I can see this element in the IE developer tools: Unfortunately I always ...
3
votes
3answers
7k views

How to Execute FetchXML in CRM 2011 using a CRM 2011 webservice and JavaScript?

I want to execute FetchXML queries in a CRM 2011 environment using the CRM 2011 SOAP web services and JavaScript. I have found a number of articles like this one showing how to use the 4.0 web ...
3
votes
4answers
511 views

Best Practices for Concurrent CRM 2011 Development [closed]

What are the best practices for dealing with concurrent development in CRM 2011? What is the proper way to deal with changes to customizations by different developers? Assuming that each developer ...
2
votes
1answer
37 views

CRM2011 How to get object type code by entity name in Javascript?

I have a lookup field in the form, before select the related entity for the lookup, I check some conditions, if not pass, I overwrite the lookup onclick event to alert user; else, I need to overwrite ...
2
votes
1answer
33 views

Email Invoice Details from Invoice Workflow in CRM 2011

In CRM 2011, I have a workflow configured to "Send Email" once Invoice status is marked "Paid". However, in the Email Template, it does not appear I have access to fields from the Invoice Details ...
2
votes
1answer
39 views

How to trigger plugin in MS Dynamic CRM on N:N relationships?

I want trigger MS Dynamic CRM plugin in N:N(many to many) relationships? When user add or remove row from N:N relationship, then exposed my plugin. It's possible, and how if it's?
2
votes
1answer
37 views

Execute JScript when loading Entity from Sitemap

I have a custom entity which has an entry in the sitemap. When I load the entity in the main window, it opens the grid view on the right - standard behaviour so far. I now want to change some thins ...
2
votes
1answer
46 views

Inverse selection in Microsoft Dynamics CRM 2011 view

How can I create a view to select entities which DO NOT HAVE some properties! For example, I could easily select entities which have phone call activities, but how can I select entities which do not ...
2
votes
1answer
41 views

CRM 2011 Workflow “Invalid Pointer” error

I have a custom workflow in CRM 2011 which is manually triggered against custom entity records. When a single record is selected for processing, the workflow is always successful. However when ...
2
votes
0answers
35 views

How to use custom logic to conditionally display a ribbon group in a grid view-like scenario in a supported fashion in CRM 2011?

I've modified the sitemap of a CRM 2011 solution to contain a new Area. That area contians a single Group and the Group contains a single SubArea. The SubArea is defined with a URL attribute similar ...
2
votes
1answer
55 views

How to create lookup field for e-mail template entity?

I want to add new field on my custom form. It should be 'Lookup' type and with target record type 'Email template'. By default, CRM 2011 doesn't contains this entity in target records list. Any ...
2
votes
1answer
45 views

How to configure CRM Ribbon xml to display a ribbon button for an Entity only when it is being viewed in the context of a particular parent entity

What I'm Trying To Do I've got a CRM entity (LocationSettings) that is displayed as an associated Sub Grid on another entity (Location). I want to add a button to the subgrid ribbon for the ...
2
votes
1answer
33 views

Choose value for Regarding field in Microsoft Dynamics CRM 2011 Mobile Express

I created a custom activity entity that should only be viewable in Mobile Express (ME). I could adapt the queries for all the views in CRM Online to exclude the entities with the type equal to my ...
2
votes
2answers
205 views

How to create and delete data from entity relationship many-to-many in CRM 2011?

How to create and delete data from entity relationship many-to-many in crm 2011? Code: QueryExpression qry = new QueryExpression(); qry.EntityName = "entity1_entity2"; qry.ColumnSet = new ...
2
votes
2answers
136 views

MS CRM 2011:- How to allow user to delete record in iframe?

I have a business requirement where I need to allow the users to delete the listed record in an iframe. Let me explain it further. I have Contract entity which is associated with user entity. We have ...
2
votes
1answer
81 views

Last X Months does not function correctly in CRM 2011

I am creating a view and have tried to get the correct search created, but the results are unexpected. Basically I need to find all records that have been created in the last x months. I created my ...
2
votes
1answer
274 views

Dynamics CRM 2011 Bulk Update

Running Dynamics CRM 2011 rollout 3. Need to update millions of customer records periodically (delta updates). Using standard update (one by one) takes a few weeks. Also we don't want to touch the DB ...
2
votes
1answer
491 views

Connect to mscrmservices/2007/CrmService.asmx endpoint in CRM 2011 IFD/ADFS

We have just upgraded from Microsoft Dynamics CRM 4 to Microsoft Dynamics CRM 2011. Most of the upgrade has gone smoothly, however I have some custom code (written for CRM 4) which was implemented as ...
2
votes
3answers
96 views

Can I create a custom implict type cast?

I have a class declared as such: public abstract class CrmAttribute <T> : ICrmAttribute { } And in one of the methods further down I have this castedValue = (T)value; castedValue is then ...
2
votes
2answers
91 views

early bound classes usage

Please excuse any irritation that may come through. So after using the early bound classes for a while now our team has noticed some cons that make early bound classes pretty useless. Issues: ...
2
votes
3answers
121 views

WHERE clause in LINQ query seems to be failing

Please forgive any naivety, I'm brand new to the world of C#. Let me know if I've left out helpful information. I'm building a custom SiteMapProvider for the Customer Portal for Dynamics CRM 2011. ...
2
votes
1answer
50 views

Is it possible to place an org in it's own process

So we have 2 Orgs in our dev CRM environment. Both orgs are using the same worker process (w3wp.exe). So whenever one developer hits a breakpoint in a plugin it locks the process and both orgs stop ...

1 2 3 4 5 11