Sensors and network administering


sensornet-work.com keyword stats



Most current Google search phrases:

cable spped test telnet test 1723
pptpsrv test  

Microsoft CRM - Typical Customizations

Microsoft CRM was designed to be easilyExchange event handler (ONSYNCSAVE database
customizable. Microsoft CRM Softwareevent sink). This example maybe complicated
Development Kit (MS CRM SDK) which you canwith the following requirement. Imagine that
download from Microsoft website containsBill, instead of answering to your email
descriptions of the objects or classes,(sent from CRM and processed by CRM-Exchange
exposed for customization. It has sampleconnector) sends you new message from MS
code in C# and partially in VB.Net. InOutlook. Then this email will not follow
Visual Studio.Net you can analyze all theinto MS CRM (because it doesn't have GUID in
classes, used by Microsoft developers tothe header and so is ignored by CRM Exchange
create MS CRM - you will discover that mostconnector). If you want to capture these
of them are not documented in MS CRM SDK.emails - you have to do it in Microsoft
Microsoft will not support your customizationExchange event sink. There maybe scenario
if you use undocumented class or do directwhen you want to capture and analyze in the
SQL access to CRM database.Let us describesink all the outgoing emails - this is even
you - programmer, software developer typicalmore complex - y!ou have to place the sink on
cases of MS CRM Customizations.1. Integrationtransport event.3. ASP Application
with SQL Server application. If you haveintegration. You have legacy ASP
legacy system on MS SQL Server - let's sayapplication, where you capture orders from
you are transportation company and haveyour customers and you want these orders be
in-house developed cargo tracking database.transferred to the CRM as activity. Here you
Now in MS CRM you want lookup the shipmentsunderstand that ASP doesn't deploy Active
for the customer (or account in CRM). ThisDirectory security - and the best way is to
is SDK programming and calling SQL storedcreate HTTP handler and call it from your ASP
proc to retrieve cargo info. Instead of SQLpage. This HTTP handler in turn will call MS
Server you can have other database (ORACLE,CRM SDK web service with predefined
MS Access, PervasiveSQL to name a few) - you(web.config) Active Directory
can access multiple Database platforms viacredentials.Some cautions. Never create your
ADO.Net connection from your .Netcustom SQL objects (like stored procedure,
application, which is easily integrated intoSQL view, table) in MS CRM database.
MS CRM Account screen.2. Email capturing inInstead, create your own database and place
MS CRM. You have customer with email Nowyour objects there. When you see the first
you want all the emails that you receive fromcaution - you will never try to alter
domain to be attached to Bill who is accountexisting CRM objects, like adding new field
in CRM. This is more difficult customizationto the table.Happy customizing! if you want
- you have to create MS CRM SDK web service,us to do the job - give us a call
that one will be creating email activity and1-866-528-0577!
call it from COM+ application - Microsoft



1 A B C 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95