Xrm.Page.getControl(arg).getLabel() showing both Label and Description after CRM 2015 Online Update 1.2.


Last week we had Update 1.2 installed in our CRM 2015 Online instances. After that we have started getting following issue.
In alert we were showing Label of the field using Xrm.Page.getControl(arg).getLabel(), and after update it is now showing Lablel as well as description of that field.

alert(Xrm.Page.getControl("parentaccountid").getLabel());



Waiting for the fix, till now removing the description seems like the only solution (temporary one)
Hope it helps


“Uncaught TypeError: Cannot read property ‘firstChild’ of null” error in Business Process Flow in CRM 2015 after CRM 2015 Update 1.2.


Hi,

After CRM 2015 Update 1.2 were installed, we started getting the below error in one of our Opportunity Forms on click of Next Stage in BPF.

 

g WP_20150405_002

We were using Legacy Form Rendering, and we observed this issue was not occurring in case of New Form Rendering.

After trying out several options, what worked was removing one of the sub grids used in the hidden tab.

Hope it helps..

Set PartyList field To in Email in CRM 2015 (and earlier)


Sample code to set the PartyList field for Email Activity.


function setContact() {

var partlistData = new Array();
partlistData[0] = new Object();

// guid of the record
partlistData[0].id = "8B2AD82B-30D6-E511-811F-3863BB356F90";

// name of the record
partlistData[0].name = "Hugh Grant";

// entity schema name
partlistData[0].entityType = "contact";
Xrm.Page.getAttribute("to").setValue(partlistData)

}

Hope it helps..

The selected translations file is either invalid or does not conform to the required translations file schema error while importing translations in CRM 2015 (and earlier)


Hi,

While importing translations we got the below error

On opening the CrmTranslations.xml we saw the translations missing for that row.

On specifying the values for those fields and importing it back fixed the issue.

Hope it helps..

Plugin on update of Quote Detail in CRM 2015 firing on Quote Create Issue.


Hi,

We were facing one issue recently on creating Quote, where in we were getting exception on our Plugin that was registered in Post Update of Quote Detail.

It was kind of surprise for us that why it was getting triggered.

We removed all our others plugin and workflow on Quote and Quote Line but still that plugin was getting triggered. So we thought of trying it out on Vanilla instance of CRM 2016. In case of CRM 2016 the plugin registered on Post Update of Quote Detail didn’t trigger.

We then tried it on Vanilla instance of CRM 2015 On Premise (no online available), and we saw the same case i.e. Plugin getting triggered.

We were getting the following detail on Context.ParentContext (in case where Plugin on Update of Post Quote Detail is asynchronous)

                     Message – Update

         Stage – 30

         EntityReference (Target) – Quote

For Synchronous the message will be Retrieve

Hope it helps..

Import Solution progress bar rolls back without any error in CRM 2015\CRM 2013 Online.


Hi,

Occasionally while importing the solution to our UAT environment we have faced this issue where the solution hasn’t imported, didn’t give any error but has rolled back.

This issue seems to be occurring when we are facing Network Issues and Internet connection intermittently goes down.

Trying it again once the network is stable resolves this.

Hope it helps..