| Daren's profileDaren TurnerBlogLists | Help |
|
December 15 How to pull entity information from the Microsoft CRM MetaData Service using javascript.
The following code will pull entity information, using the Metadata service, using javascript. This code is useful for pulling the objecttypecode dynamically when they may differ between environments. var _sWebServicesNamespace = "http://schemas.microsoft.com/crm/2006/WebServices"; function _RemoteMetaCommand(sCommand, sAction) var soapmessage = "<?xml version='1.0' encoding='utf-8'?>" return xmlhttp.responseXML; var entity = "new_country" //Get ObjectTypeCode var result = _RemoteMetaCommand(query, "RetrieveEntityMetadata").selectSingleNode("//ObjectTypeCode"); var countryentitytypecode = result.text;
Here is the response. July 07 Auditing for CRM 4.0This is a plugin that I developed to audit transactions in CRM 4.0. The records that are created are stored in CRM and can be related to the entities in CRM. Features
Messages Tested
Download Here
This customization may not be supported by Microsoft and is provided as-is with no warranty. December 12 How to change the entity drop down for the Customer LookupIn this post, I'm going to show you how to modify the entity drop down for the Customer Lookup without changing the security for the whole application. I'm going to use the customer lookup for opportunity as our example. By default you have Account and Contact in the drop down for the 'Look For:' search criteria. If you look at the html for the customer lookup field, on the opportunity form, it looks like this. <img src="/_imgs/btn_off_lookup.gif" id="customerid" class="lu" tabindex="1010" lookuptypes="1,2" lookuptypenames="account:1,contact:2" lookuptypeIcons="/_imgs/ico_16_1.gif:/_imgs/ico_16_2.gif" lookupclass="BasicCustomer" lookupbrowse="0" lookupstyle="single" defaulttype="0" req="2"> The 3 attributes we will need to change is lookuptypes,lookuptypeNames and lookuptypeIcons. Reorder the Dropdown To reorder the drop down, add the following code to the 'OnLoad' of the Opportunity form. crmForm.all.customerid.lookuptypes = "2,1" The dropdown should default to Contact when it's opened.
Remove an Entity from Dropdown To remove Contact from the customer lookup for Opportunity add the following code on the 'OnLoad' of opportunity. crmForm.all.customerid.lookuptypes = "1" The lookup should only be for accounts.
Although it may be possible, I wouldn't add entities to the lookups since the customer relationship does not exist.
This customization may not be supported by Microsoft and is provided as-is with no warranty. March 29 Viewing a Logo in Microsoft CRMI'm always getting the question on how to view a logo or image in Microsoft CRM. Well here is a quick customization you can add to your account form and view a logo. Once you add this script on the 'OnLoad' event of the form, all you need to do is add an image called 'logo.jpg' as an attachment and everything will show up properly. This customization will even work offline. Script var Loaded = false; if(crmForm.FormType ==2 || crmForm.FormType ==3 || crmForm.FormType ==4) // attach an event so we know when the notecontrol is done loading // refresh the notecontrol function LoadLogo() var oDoc = (oNotes.contentWindow || oNotes.contentDocument); //Iterate through all the attachments. When your done, your form should look like this. If you really want to get creative you can go a little further and build a viewer to page through all images that are attached to the record.
This customization may not be supported by Microsoft and is provided as-is with no warranty. March 28 Replicating CRM Records to another CRM SystemA friend of mine called me up and asked if it was possible to create records in one CRM system when they are created in another one. Well here is a quick example of how to do it. Assumptions
If there are discrepencies with the guids in each system, there will be issues with this example. When the postImageEntityXml is Deserialized into a DynamicEntity, it has the guid of the source system. When it's created in the target system, it's created with the same guid. For this example I will show you a simple Post Callout to replicate a Create action, but I recommend sending these transactions to a Message Queue and then processing them from there. It's also not only limited to Create, the same thing can be done for other actions. Code public override void PostCreate(CalloutUserContext userContext, CalloutEntityContext entityContext, string postImageEntityXml) //build the credentials for access if the current user doesn't have access. DynamicEntity entity = (DynamicEntity)Serialization.DeserializeBusinessEntity(postImageEntityXml); TargetCreateDynamic targetCreate = new TargetCreateDynamic(); CreateRequest request = new CreateRequest(); request.Target = targetCreate; CRMSDK.CreateResponse response = (CRMSDK.CreateResponse) service.Execute(request); return entity; This code isn't entity specific so it will work for most of the entities in CRM. All the entity information is in the postImageEntityXml and is Deserialized into the DynamicEntity. Callout Registration <callout entity="account" event="PostCreate"> <callout entity="contact" event="PostCreate"> There are a lot more things you can do to improve this process. This is just a simple example. Some other things to consider adding into your solution is Message Queueing and Exception Handling. Hope this helps. A big shout out to Henry who is out in Ohio this week :).
This customization may not be supported by Microsoft and is provided as-is with no warranty. Shortcut Buttons in Microsoft CRMIf you want to try to cut down on clicks on CRM forms, one thing you can do is create a ISV button for actions they perform a lot. For example if users create appointments from the contact form, they would have to either go to Actions > Add Activity >Appointment in the top menu or click on Activities > New Activity > Appointment from the menu on the left. Here is the shortcut. Add a ISV button in the isv.config.xml file. <Entity name="contact"> The text in Red is the same function called when you click new appointment from the menu. Save the changes and refresh your contact form. Hope this helps
This customization may not be supported by Microsoft and is provided as-is with no warranty. Custom Lookups in Microsoft CRMIf you're like me and don't like having to do your own custom lookups as an ISV button, then here is a better way of doing it. This customization will allow you to implement lookup functionality and have it look like the CRM lookups. It just looks a lot cleaner. Adding the Button First you will need to determine which field you want to add the button to and get the id of the input. For this example I'll use the country text field on the Contact form which is address1_country. Then add the following code to the 'OnLoad' of the Contact Form. var beforehtml = "<TABLE class='lu' style='TABLE-LAYOUT: fixed' cellSpacing='0' cellPadding='0' width='100%'><TR><TD>" document.getElementById("address1_country").parentElement.innerHTML = beforehtml + document.getElementById("address1_country").parentElement.innerHTML + afterhtml; The form should look like this after you publish your changes and open the form. Notice the button next to the Country/Region field. This is just a text box but it has a button like a lookup. Opening the Lookup Once you have the button in place you will need to add the onclick function to the 'OnLoad' of the Form. Add the following script to the form. You can develop the custom lookup to do anything you like, you could even pass parameters to the lookup and do whatever you want. I usually try to make my custom lookups have the same look and feel as crm.
this.CustomLookup = _CustomLookup; Once the user has selected a value from you lookup, set the returnvalue of the window and then it will be assigned to your returnval variable. Then make sure it actually has a value, and then populate the text box. You're good to go. Hope this helps.
This customization may not be supported by Microsoft and is provided as-is with no warranty. |
|
|