Questions tagged [crm]

Customer Relationship Management (CRM) is a strategy for managing customer interaction. CRM software usually focus on sales, marketing and customer service.

CRM (customer relationship management) is an information industry term for methodologies, software, and usually Internet capabilities that help an enterprise manage customer relationships in an organized way. For example, an enterprise might build a database about its customers that described relationships in sufficient detail so that management, salespeople, people providing service, and perhaps the customer directly could access information, match customer needs with product plans and offerings, remind customers of service requirements, know what other products a customer had purchased, and so forth.

An example of an online CRM application can be found here.

According to one industry view, CRM consists of:

Helping an enterprise to enable its marketing departments to identify and target their best customers, manage marketing campaigns and generate quality leads for the sales team. Assisting the organization to improve telesales, account, and sales management by optimizing information shared by multiple employees, and streamlining existing processes (for example, taking orders using mobile devices) Allowing the formation of individualized relationships with customers, with the aim of improving customer satisfaction and maximizing profits; identifying the most profitable customers and providing them the highest level of service. Providing employees with the information and processes necessary to know their customers, understand and identify customer needs and effectively build relationships between the company, its customer base, and distribution partners. Many organizations turn to CRM software to help them manage their customer relationships. CRM technology is offered on-premise, on-demand or through Software as a Service.

2943 questions
8
votes
2 answers

Invalid CRM 2011 LINQ Query: "Invalid 'where' condition. An entity member is invoking an invalid property or method."

I am trying to execute this query to retrieve Audit items for specific entity types public List GetAuditChangesSince(DateTime since, string entityType) { return (from a in OrgContext.CreateQuery() where …
Ryan
  • 3,784
  • 5
  • 42
  • 67
8
votes
1 answer

500 - Internal server error with "resource you are looking for, and it cannot be displayed."

I have created a entry page and created fields for all those. Now am trying to entered fields into my database. My values are save in database but after saving my CRM page shows error like 500 - Internal server error. There is a problem with the…
jeni
  • 925
  • 4
  • 18
  • 31
8
votes
2 answers

Microsoft Dynamics CRM integration SharePoint

Have any of you done a MS CRM 4.0 and SharePoint integration. Any Pointers? I am new to both the CRM and SharePoint. After a little more research, Id like to refine my question. I basically want to use IFRAME to add a SharePoint tab that will show…
Drunken Programmer
  • 269
  • 1
  • 5
  • 12
7
votes
1 answer

Stepping MVC Mini Profiler without nested usings

We're modelling a complicated system based around a complicated entity relationship in Dynamics CRM 4.0 Due to the nature of development we've had to implement a repository style pattern and have lots of different providers that relate to each…
Russ Clarke
  • 16,600
  • 3
  • 36
  • 43
7
votes
1 answer

Equivalent to SQL IN clause

I've got an entity called new_trexmail with a string attribute called new_contextline. I'm trying to get a list of entities where new_contextlineis in a defined list. The following code fails with the error : NotSupportedException: Invalid 'where'…
dlarkin77
  • 787
  • 1
  • 9
  • 26
7
votes
2 answers

MS CRM 2011 CrmSvcUtil gives error

Im trying to use the CrmSvcUtil with the following command: C:\TMP\sdk\microsoft.xrm\tools>crmsvcutil.exe /connectionString:"Authentication Type=AD; Server=myip; User ID=myusername; Password=xxx" /generate:cs /out:schema.cs /namespace:Xmr…
Marthin
  • 6,009
  • 14
  • 53
  • 91
7
votes
1 answer

How to retrieve the language of the current user with javascript?

I'm looking for javascript code that will return the language selected by the current logged in crm user. Is there another method than reading the language setting from the used internet browser.
ThdK
  • 6,877
  • 20
  • 67
  • 91
7
votes
1 answer

Add Dropdown Menu to CRM 2011 ribbon

I 'm new to crm 2011. I've found documentation on how to add a new button to the ribbon. And how to group the buttons. But i need a dropdown menu button in the ribbon. How can i do this? I didn't found any information about this. Thanks!
ThdK
  • 6,877
  • 20
  • 67
  • 91
7
votes
7 answers

DefaultCredentials in Accessing CRM / Sharepoint Web Services

I made an application that access CRM's web service. The problem is, when I deployed the dll into Sharepoint server, it returned error 401 unauthorized. Apparently the System.Net.CredentialCache.DefaultCredentials didn't work (my suspicion). Here's…
cyrene
  • 119
  • 1
  • 2
  • 8
7
votes
4 answers

Is there any CRM based on an modern Java EE Stack (Spring/EJB, JPA)?

I have to build a special customized Customer Relation Ship Managment tool. There are only basic requirements (manage customers, add notes for them, attach an email,…) for the CMR, except the one, which is about integration of a specific application…
Ralph
  • 111,219
  • 48
  • 270
  • 362
7
votes
3 answers

Get audit history records of any entity record as per CRM view

I want to display all audit history data as per MS CRM format. I have imported all records from AuditBase table from CRM to another Database server table. I want this table records using SQL query in Dynamics CRM format (as per above image). I have…
Chirag
  • 286
  • 2
  • 4
  • 26
7
votes
2 answers

Writing testable TypeScript classes for Dynamics CRM

How do you write a class for a Dynamics CRM form in TypeScript that is testable? By testable, I mean a non-static class that can be instantiated and passed a mock Xrm object. My current approach is something like this, but it has limitations (which…
Dave Clark
  • 2,149
  • 13
  • 32
7
votes
1 answer

CRM 2016: error message dialog does not show up

In Offer screen, I have an subgrid of ProductOffer can be added. I have a PreCreate ProductOffer plugin which checks for some conditions to show error message and stop creating. So in this plugin I added: throw new…
Hong Nguyen
  • 405
  • 3
  • 13
7
votes
5 answers

is possible to build applications directly into gmail using google applications (google.com/a)?

We are looking for a CRM web application and so far salesforce.com/force.com seems the only one which allows you to build applications directly on their platform. However I was wondering if gmail/google applications offer the same freedom on their…
Michael
  • 6,149
  • 14
  • 54
  • 91
7
votes
3 answers

Dynamics CRM SDK in C# connect with Invalid Password

I am developing one C# application which is used to retrieve data from Dynamics CRM Online. To validate the User Name and Password of Dynamics CRM I am using the WhoAmIRequest. It works fine until the below scenario occures. 1)Connect the Dynamics…