Display Custom Entity on IPad or Windows 8 CRM App Home Screen

Originally posted on Rajeev Pentyala – Microsoft Power Platform:
I recently got a chance to work with CRM on Tablets. The requirement was to display a Custom entity on Tablets home screen. It’s very easy to achieve with below steps. Enable entity for tablets I have a Custom entity ‘Change Of Address’ To enable this…

Update advanced Settings(AggregateQueryRecordLimit,ExecuteMultipleMaxBatchSize and etc)

Hi, Here is the way to Update advanced settings. Fro example: Default batch size of Execute multiple request is 1000, In some cases we may need to update to more than 1000. It can be updated through UpdateAdvancedSettingsRequest Here is the complete code which can help you. DeploymentServiceClient service = Microsoft.Xrm.Sdk.Deployment.Proxy.ProxyClientHelper.CreateClient(new Uri(“http://crmtest/XRMDeployment/2011/Deployment.svc”)); RetrieveAdvancedSettingsRequest request3 =Continue reading “Update advanced Settings(AggregateQueryRecordLimit,ExecuteMultipleMaxBatchSize and etc)”

CRM 2015 – Javascript issues with Tablet (Ipad and etc)

Hi, I have been working on tablet one of the projects. I have come through some of the changes where JavaScript doesn’t support in Tablet. So to differentiate, Have you JavaScript checked for client. if (Xrm.Page.context.client.getClient() == “Mobile”) { //Write your logic here for Tablets } else { //Rest of code goes for Web andContinue reading “CRM 2015 – Javascript issues with Tablet (Ipad and etc)”