The entity with a name = ‘new_xxx_new_yyy’ was not found in the MetadataCache.

When you set custom view for filtering many to many (N:N) relationship, if u get an error like this. You have to change link entity name. You can check intersectEntityName from metadata browser.

The entity with a name = ‘new_xxx_new_yyy’ was not found in the MetadataCache.

intersect-entity-name-metadata

Unhandled Exception: System.ServiceModel.FaultException`1[[Microsoft.Xrm.Sdk.OrganizationServiceFault, Microsoft.Xrm.Sdk, Version=8.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad264e35]]: The entity with a name = ‘new_xxx_new_yyy’ was not found in the MetadataCache.Detail:
<OrganizationServiceFault xmlns:i=”http://www.w3.org/2001/XMLSchema-instance” xmlns=”http://schemas.microsoft.com/xrm/2011/Contracts”>
<ErrorCode>-2147217150</ErrorCode>
<ErrorDetails xmlns:d2p1=”http://schemas.datacontract.org/2004/07/System.Collections.Generic” />
<Message>The entity with a name = ‘new_xxx_new_yyy’ was not found in the MetadataCache.</Message>
<Timestamp>2016-10-25T14:45:38.4066037Z</Timestamp>
<InnerFault i:nil=”true” />
<TraceText i:nil=”true” />
</OrganizationServiceFault>

Read More

CRM Tips : Javascript Stop Form Saving

If you want to control your process on save event, you can use preventDefault method.

Dont forget to click “Pass execution context as first parameter” on Form Properties.

crm on save javascript

preventDefault : Cancels the save operation, but all remaining handlers for the event will still be executed.

 

Save event arguments (client-side reference)

https://msdn.microsoft.com/en-us/library/gg509060.aspx

Read More

Save the form with Callback functions on CRM 2015

Saves the record asynchronously with the option to set callback functions to be executed after the save operation is completed.

crm-2013-client-api

With Microsoft Dynamics CRM Online 2015 Update 1 or later you can also set an object to control how appointment, recurring appointment, or service activity records are processed.

Open different or same entity form after save :

Reload form after save

window.location.reload(true); or location.reload(); or window.location = document.url;

These scripts cannot work for CRM 2013 and higher version. So you have to use callback functions after saving.

Source : https://msdn.microsoft.com/en-us/library/dn481607.aspx

Read More

How to get the type of attribute on CRM using Javascript ?

getAttributeType

Returns a string value that represents the type of attribute.

This method will return one of the following string values:

  • boolean
  • datetime
  • decimal
  • double
  • integer
  • lookup
  • memo
  • money
  • optionset
  • string

getFormat

Returns a string value that represents formatting options for the attribute.

This method will return one of the following string values or null:

  • date
  • datetime
  • duration
  • email
  • language
  • none
  • phone
  • text
  • textarea
  • tickersymbol
  • timezone
  • url

 

Application Field Type Format Option Attribute Type Format Value
Date and Time Date Only datetime date
Date and Time Date and Time datetime datetime
Whole Number Duration integer duration
Single Line of Text E-mail string email
Whole Number Language optionset language
Whole Number None integer none
Single Line of Text Text Area string textarea
Single Line of Text Text string text
Single Line of Text Ticker Symbol string tickersymbol
Single Line of Text Phone string phone
Whole Number Time Zone optionset timezone
Single Line of Text Url string url

Source : https://msdn.microsoft.com/en-us/library/gg334409.aspx#BKMK_getAttributeType

Read More

CRM Tips : Convert Text to Uppercase on Key Down event for CRM 2013 and 2015

You can find lots of post for CRM 2011 keypress on the Internet. But those methods cannot work on CRM 2013 and  2015 so you can use this method.

 

If you are using different language for CRM. You can customize special character’s char code to if statement. For example :

Read More

CRM 2011 Javascript Basics

Why we use Javascript in CRM ?

  • Data Manipulation on the forms
  • Automation and usability for users
  • Custom Validations on the forms about processes
  • Process Enhancement and Enforcement
  • To Create, Update and Retrieve record on the Client Side using OData

Get the value from field

Set the value of a field

Set the value of a disabled field (Read-Only)

Set the Requirement level

Get Form Type

Set the value of a lookup field

Hide / Show a field

Hide / Show a Tab

Save the form & Save and Close the from

Determine whick fields on the form are dirty

Get ID / Guid of the current record

Get ID / Guid of the current user

Get the Security Roles of the current user

Get the CRM Server URL

Refresh a SubGrid

Change the default entity in the lookup window 

Popup an existing CRM Record

Popup a new CRM form ( blank form)

Popup a new CRM form with default values

Popup / Trigger the lookup window associated to a lookup field

Popup an OK / Cancel Dialog ( Alert )

Refresh the Ribbon

Disable the all fields in the form

Expand / Collapse a Tab

Get all Required Fields in CRM form

Set / Change Label of field in CRM form

Reload / Refresh a form in CRM

Convert to Upper String Value

Change CRM Field CSS Style (font, color etc.)

Set as Read Only

Read More