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...
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...
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?
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...
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 ...
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...
I am new to MS-Crm. having lots of question regarding its customization.
how to edit its form.
how to edit tool tip.
...
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...
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...
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...
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
...
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...
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...
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.
...
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 ...
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.
...
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...
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, ...
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...
...
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.
...