mscrm

Setting field focus after javascript alert not working in MS CRM

I have the following code in the OnChange() event for a field. alert("alert text"); crmForm.all.fieldname.SetFocus(); The page acts like the SetFocus call isn't even there. Anyone know why this is? EDIT: I've also tried the following to no avail. crmForm.all.fieldname.Focus(); crmForm.all.fieldname.focus(); alert("alert text", func...

Suggestions for technical approaches to Licensing a CRM4 (ISV) add-on

Hi all, The team I'm working with have created a CRM4 add-on which encapsulates 'standard' CRM customisations (such as modifying existing entities, adding our own custom entities), reports, plug-ins, and our own web pages (in IFrames) and web services. All pretty typical stuff. I'm writing all the requisite installation code to simplif...

Create custom Form in Microsoft Dynamic CRM 4.0?

Hi I am very new in Microsoft CRM. I need to create one Custom form on entity except the default form provided by CRM. is there any way to create it? Thanks ...

How can I run an ASP.net 4.0 app in the ISV folder on CRM 4.0?

How can I run an ASP.net 4.0 app in the ISV folder on CRM 4.0? It works if I make the asp.net app target .net 2.0, but if I switch it to .net 4.0 I get 404.17's. Which imply that the script handler setting is missing from my web config, but isn't that built into the .net 4.0 runtime now? (hence it's removal from the web.config automat...

How do I search for a wildcard character in Microsoft CRM 4.0?

I need to search for accounts in Microsoft CRM, using a wildcard search to get a "contains" search for the user's input. So if the user enters "ABC", I use ConditionOperator.Like and the value "%ABC%". My question is, how would I search for a customer name that contains a percentage sign, such as "100% Great llc"? I can't find a way to ...

Turn a single partylist field into multiple

Is there a way to transform a partylist field like Customer in a Campaign Response to allow for multiple Contacts/Accounts/Leads? Although unsupported, I now from Jian Wang that some attributes of the lookup can be modified in the onload() event like this: crmForm.all.customer.setAttribute("lookuptypes", "1,2"); Is there a similiar a...

customization of tool tip in MS-CRM 4.

I am new to MS-Crm. having lots of question regarding its customization. how to edit its form. how to edit tool tip. ...

Service MSFTESQL not found.

While installating MS-CRM:I got sql server errors:- 1>Service MSFTESQL not found. The specified service does not exists as an installed service -----but i can see the service is running automatically and help file says **"verify that you have local administrator permissions for the computer on which sql server is running. And if nece...

Customize MS dynamic CRM entity in visua studio 2008

Hi, I have installed the MS dynamic CRM on my windows server 2003. I want to add the javascript to the one of entity that has drop down control. let say Opportunity entity. But I don't know how to open the CRM in visual studio so that i can make changes. I have installed CRM explorer as well as Install the CRM Solution Framework(under f...

How to fix issues when MSCRM Plugin Registration fails.

When you register a plug-in in Microsoft CRM all kinds of things can go wrong. Most commonly, the error I get is "An error occurred." When you look for more detail you just get: "Server was unable to process request" and under detail you see "An unexpected error occurred." Not very helpful. However, there are some good answers out ther...

Database Changes in CRM 4.0

Hi, I have been told, roumerred, but can't find any documented evidence that it will invalidates your support contract with Microsoft Dynamics CRM 4.0 if you modify the database by scripting data into the database manually using TSQL. Can anyone help with a link or confirmation that this is true. Thanks in Advance Iain ...

Unable to Create New Incidents in Dynamics CRM with Java and Axis2

So I've been working on trying to figure this out, oddly when I ran it one machine I got a generic Axis Fault with no description, but now on another machine I'm getting a different error message, but I'm still stuck. Basically I'm just trying to do what I thought would be a fairly trivial task of creating a new incident in Microsoft Dyn...

Building a QueryExpression where name field is either A or B

I'm trying to build a Dynamics CRM 4 query so that I can get calendar events that are named either "Event A" or "Event B". A QueryByAttribute doesn't seem to do the job as I cannot specify a condition where the field called "event_name" = "Event A" of "event_name" = "Event B". When using the QueryExpression, I've found the FilterExpres...

Can't get UpdateAttributeRequest to work

I am trying to use the Metadata Web Service of Dynamics CRM to update the order of some picklist options using the UpdateAttributeRequest message. Though I get to change the attribute's DisplayName using the MergeLabels = false option, the picklist option values themselves seem immutable. ...

Adding fields to Phone Call activity form

In the Phone Call entity, the "to" attribute is of type partylist. Would like to be able to add the parent customer to the entity so it can be added to the form and views so when listing phone calls the activities can be grouped by parent customer. Typically the phone call activity is created from a Marketing list not manually so this ...

Create new StateCode in CRM 4.0

Dears, I have a situation where i have to add a new State to the stateCodes list. I would like to add "Fired" to Active and InActive state, How can i do such a thing ? Note: i know about the StatusCode and how to use it but i want to use the statecode. Thanks so much. ...

What are recommended approaches for migrating from 2-tier NHibernate to 3-tier with SOA (Microsoft CRM)?

Given a (current) project that implements a 2-tier architecture with a well-separated on-tier business layer following the typical generic DAO architecture as pioneered by Bill McCafferty on CodeProject and explained briefly in chapter 10 of NHibernate in Action. This project must be moved to do CRUD operations and business logic throug...

Updating StateCode in Dynamics CRM with web service failes...

Hi! Im trying to update "StatE Code" (Active|Inactive) to Active through the CRM web service on a product in the database. ... crmProduct.statecode = new ProductStateInfo() { Value = ProductState.Active }; //crmProduct.statuscode = new Status() { Value = 1 }; crmProduct.name = "..."; service.Update(crmProduct); It seem to work okay, ...

Deleting entities in Dynamics CRM

This should be simple... Im using the CRM web service to delete entities such as products -> service.Delete(product); This sets the DeletionStateCode to 2 but when does it get deleted for real? I did this yesterday and they are still there... ...

get entity value at client side in MS CRM (javascript)

Hi, Let say I have the entity Branches, which have vale a,b,c,d,e... I want to show these value on another entity's New form as picklist field. what have to do. Is need to write the javascript so that I can get the value of Branch entity and assign to picklist field in another entity. please i am new in MS CRM, guide me. please. ...