Questions tagged [dynamics-crm-2015]

Microsoft Dynamics CRM 2015 is the 7th version of the Microsoft Dynamics CRM platform launched in the end of 2014. Microsoft Dynamics CRM’s key focus is sales, marketing, service and help desk. However, it's highly adaptable and easily customizable to usage of both client-side JavaScript and server-side .NET code for plugins.

Microsoft Dynamics CRM 2015 is version 7 of the Microsoft Dynamics CRM platform launched in the end of 2014.

Microsoft Dynamics CRM 2015 doesn’t bring major changes for programmers. However, in this version, more customization can be realized simply by configuration (without programming) including enhanced business process flows, business rules, SLA enhancements and others.

Microsoft Dynamics CRM 2015 doesn’t support older software (browsers, MS Office, Windows server, SQL server etc.). Generally, it supports last two versions.

Questions asked about Microsoft Dynamics CRM 2015 typically include those around configuration, client-side customization (e.g. forms, views, charts, dashboards, javascript etc.), deployment, or server-side development (workflow assemblies, plugins in .NET, XML, SQL etc.)


Microsoft Dynamics CRM’s key focus is sales, marketing, service and help desk. However, it's highly adaptable and easily customizable to usage of both client-side JavaScript and server-side .NET code for plugins.

Major competitors to Dynamics CRM include SalesForce, SAP CRM and Oracle PeopleSoft CRM.

The Microsoft offering can be hosted on-premise by organizations, hosted in the public Microsoft Azure cloud for a fixed monthly fee, by a Microsoft Partner or as a federated solution. This flexibility lets companies change their deployment strategy as their business needs change whilst utilizing a single organization.

End users can access Microsoft CRM in the following ways.

  1. Supported web browser, such as later versions of Internet Explorer or the latest versions of Apple Safari, Google Chrome and Mozilla Firefox.
  2. Using a native Microsoft Outlook plugin integration
  3. Using a mobile device (mobile phone or tablet) with Microsoft Dynamics CRM Mobile
  4. ISV solution such as CWR Mobility

Preceding versions

Succeeding versions

561 questions
0
votes
2 answers

To restrict the multi entity lookup using javascript in MSCRM 2015

Am trying to restrict the entities list in regarding object lookup in task entity. document.getElementById('regardingobjectid").getAttribute("lookuptypenames") is returning null in 2015 whereas in crm 2011 it is working fine. is there any way to get…
bs25
  • 1
  • 6
0
votes
3 answers

How to fetch entity records from CRM

I am very new to MS-CRM and I want to retreive all the details of the contact var executeQuickFindRequest = new OrganizationRequest("ExecuteQuickFind"); executeQuickFindRequest.Parameters = new ParameterCollection(); …
Rohit
  • 10,056
  • 7
  • 50
  • 82
0
votes
1 answer

Retrieve Record in CRM 2015 using CRMRestKit

I have use imported CRMRestKit (version 2.6.1) library including JSon2 and Jquery(version 2.1.1). Here is part of code. CrmRestKit.Retrieve("vwfm_company", companyLookup[0].id, ['']); It do not return any record although there is a match. Any…
Irene
  • 1
  • 1
0
votes
1 answer

Why am I not able to edit the privileges for 'openrevenue' and 'opendeals' in Field Level Security in CRM 2015?

opendeals and openrevenue are the two OOB fields on Account in CRM 2015 Online. Field level security is turned on by default for these fields. However, I'm not able to edit Update and Create privileges on these fields in Field Level Security. The…
priyeshwagh777
  • 65
  • 2
  • 11
0
votes
1 answer

Timer Field in CRM Dynamics 2015

I am currently working on Dynamics CRM 2015 with Timer field. As per the requirements when a case is created it will go through 2 departments . (department 1 and then Department 2). Each department has its Separate TAT (Turn Around Time). When Case…
0
votes
1 answer

Error when using "generateActions" comand on CrmSvcUtil.exe

Error started after updating to CRM 2015. Using the new 2015 SDK, the following command: CrmSvcUtil.exe /url:https://.api.crm.dynamics.com/XRMServices/2011/Organization.svc /out:.cs /username:
Joao Leme
  • 9,598
  • 3
  • 33
  • 47
0
votes
2 answers

Crm 2015 plugin template

I installed the CRM 2015 sdk and VS2013 templates. There is no plugin template. Where is it now? Can't find a way to find any information related to it. Anyone has installed the sdk? Are there plugin creation template?
0
votes
1 answer

How do I create a supplier in Microsoft Dynamics CRM 2015?

Microsoft CRM 2015.. a great little customer management system, but why did do they leave suppliers out? Anyway how do I create and manage suppliers using Dynamics CRM? or do you need different software for that? Cheers,
Choco
  • 1,189
  • 1
  • 14
  • 29
0
votes
0 answers

Remove EntityReference from CRM 2015 value

I am doing a tool to synchronize some to data between CRM and another application. Now I have to remove the value from a EntityReference. I am trying in this way: contact.ParentCustomerId = null; But it does not work. That does not give me any…
Simone
  • 2,304
  • 6
  • 30
  • 79
0
votes
1 answer

How to fill option set with system activity types?

There are default activity types like: Task Appointment Phone call etc ... Is there any way I could fill option set with those? Do I need to use js sdk and odata to get that data? I've already wasted few hours trying to achieve that, with no…
Patryk
  • 3,042
  • 11
  • 41
  • 83
0
votes
1 answer

Should I install UII for developing plugins from Package Manager Console or MS site?

I want to install the UII to connect to and develop plugins in my organization. However, I can't decide between installing it using the package manager console (as discussed in some nice blog) or using the download site from Microsoft. Both feel…
Konrad Viltersten
  • 36,151
  • 76
  • 250
  • 438
0
votes
2 answers

What is the best way to limit an owner field on a record to just a User?

We have a requirement that we limit the ownership of an Account record on the form in our CRM 2013 instance to just User records and prevent them from even choosing a Team as the owner. What is the cleanest way to do this?
BlueSam
  • 1,888
  • 10
  • 17
0
votes
1 answer

Dynamics CRM 2015, Unable to connect to plugin registration tool SDK

I am using Microsoft Dynamics CRM 2015 online trial version. I got an error while trying to connect to plugin registration tool in the SDK 2015. I am using windows seven 64-bit. The full stack trace message is this: Source : mscorlib Method :…
Mouhie
  • 59
  • 2
  • 3
  • 16
0
votes
1 answer

Get Users Appointment details using javascript onload in CRM 2015

Is there anyway to particular crm users appointment details using javascript ODATA or is there any other way. Thanks Vishnu
0
votes
2 answers

how to refresh dashboard view with js in Mscrm?

I've implemented a ribbon button that updates an entity field, based on the entity selected in a dashboard view. After I update the entity field through js, I need to refresh the dashboard view to redisplay the view with the updated field…