SlideShare uma empresa Scribd logo
1 de 15
Baixar para ler offline
A C R M W H I T E PA P E R                                                                                                                                                                                  APRIL 2011




   Five Practical Solutions
     for Integrating with
   Oracle CRM On Demand



                                                                                SUBSCRIBE TO PERFICIENT BLOGS ONLINE
                                                                                www.Perficient.com/SocialMedia
                                                                                BECOME A FAN OF PERFICIENT ON FACEBOOK
                                                                                www.Facebook.com/Perficient
                                                                                FOLLOW PERFICIENT ON TWITTER
                                                                                www.Twitter.com/Perficient
                                                                                DOWNLOAD PERFICIENT WHITE PAPERS
                                                                                www.Perficient.com/WhitePapers

    Copyright © 2007-2011 Perficient, Inc. All rights reserved. This material is or contains Proprietary Information, Confidential Information and/or Trade Secrets of Perficient, Inc. Disclosure to third parties and or any
    person not authorized by Perficient, Inc. is prohibited. Use may be subject to applicable non-disclosure agreements. Any distribution or use of this material in whole or in part without the prior written approval of
    Perficient, Inc. is prohibited and will be subject to legal action.
About The Author
    Simon Wang is a Project Manager in Perficient’s China Global Delivery Center. He is a Certified
    Scrum Master/Developer, Six Sigma Green Belt and has more than ten years’ experience in the IT
    industry. Simon specializes in project management, CRM and business intelligence solutions,
    process improvement and distributed delivery using the Agile methodology.

    Simon Wang
    simon.wang@perficient.com

ABSTRACT
    Overview
    Oracle CRM On Demand offers a Web Service interface that allows customers to access their hosted
    data from any Web Services-enabled client. This paper provides an overview of a Web Services-
    based integration architecture and details five (5) practical solutions that enable integration with
    CRM On Demand.

    Introduction to Oracle CRM On Demand Integration
    Oracle CRM On Demand is a comprehensive,
    scalable and fast-to-deploy CRM solution based
    on the SaaS model. Pre-built record types and
    out of the box (OTB) functionality enables
    customers to begin leveraging CRM On
    Demand as quickly as an account is created.
    The Web Services framework built into CRM On
    Demand allows customers to integrate to
    existing applications to support their business
    processes and functional requirements.

    To the right is a basic diagram depicting the
    CRM On Demand architecture.



                                                        Figure 1 – High-Level Integrated CRM Architecture




                                          Five Practical Solutions for Integrating with Oracle CRM On Demand   t   2
This white page introduces five practical integration solutions:

      • Queue Manager
      • Web Integration
      • Embedded Web Applet
      • Data Conversion
      • Mail Response

Solution 1: QUEUE MANAGER
    Overview
    CRM On Demand offers a special web service called the Integration Event Queue. This web service
    queues all the messages, which follow a ‘first-in, first-out’ manner. The message is sent by a CRM
    On Demand workflow when specific rules are met. These rules are configured in a workflow that
    assigns an action to insert a message into the Integration Event Queue (IEQ). The IEQ and workflow
    features enable a standalone application running on an integration server to manage data in CRM
    On Demand.

    This standalone application is called Queue Manager. Queue Manager can read the Integration
    Event Queue at defined intervals and can obtain the record type name, row ID and workflow name,
    and then proceed with defined
    business logic. Finally, the process
    deletes the message from IEQ.
    Queue Manager fits in some
    scenarios when follow-up back-end
    operations are required after a user’s
    action.




                                            Figure 2 - Queue Manager Integration with CRM On Demand


                                          Five Practical Solutions for Integrating with Oracle CRM On Demand   t   3
Steps
 1. Configure Queue
   Go to Admin > Integration Event Administration > Integration Event Queue Management >
   New Queue




 2. Configure Workflow
   Go to Admin > Workflow Configuration > New. Create a workflow under Action > Create
   Integration Event. Configure this action to select the fields being monitored and sent to the
   Integration Event Queue.




                                  Five Practical Solutions for Integrating with Oracle CRM On Demand   t   4
3. Develop and Deploy the Queue Manager Application
         Queue Manager is usually designed as a standalone back-end application running on an
         integration server. It can be developed by Java, .NET or any other programming language.
         Queue Manager is executed at defined intervals determined by how quickly Queue Manager
         needs to process the message sent from a workflow (i.e. every five minutes). There are
         scheduler tools that can be integrated with Queue Manager, such as Quartz written in Java
         and Windows Scheduler written in .NET. Error reports with detailed data can be generated into
         log files and then sent notification to administrators for troubleshooting and correction. Log
         files can be configured as daily archived logs or published at a web URL for easy download.

    Best Practices
    Deploy one Queue Manager instance to process one event queue. There can be more than one type
    of event from different workflows as long as workflow name is part of the message.

Solution 2: WEB INTEGRATION
    Overview
    CRM On Demand offers powerful customization in the Admin global link. Administrators can
    create new custom Web Link fields and custom buttons in a web applet. These web links and
    custom buttons enable CRM On
    Demand to provide an entry for
    custom web application out of CRM
    On Demand. The custom web
    application can be triggered with
    parameters passed from the current
    row of the record type when a user
    clicks a web link or a custom button.
    Web integration is typically used in
    scenarios where user interaction is
    required. Figure 3 shows the flow of
    a Web Integration with CRM On
    Demand.




                                           Figure 3 - Flow of a Web Integration with CRM On Demand



                                         Five Practical Solutions for Integrating with Oracle CRM On Demand   t   5
Details
  1. Configure web link or custom button
  • Web link
    Go to Admin > Application Customization > Record Type > Record Type Field Setup > New
    Field. Create a new field with type “Web Link”. Edit the Web Link and point the link to the
    custom web application, with the parameters.




  Sample of a Web Link:




                                   Five Practical Solutions for Integrating with Oracle CRM On Demand   t   6
• Custom Button
  Go to Admin > Application Customization > Record Type > Record Type Web Applet > New.
  Create a web applet with type HTML. Choose HTML and JavaScript to generate the buttons
  and implement the action when a user clicks the buttons.




A sample of custom buttons:




2. Develop and deploy the web application
  Web integration is designed as a web application that is running on an integration server. It
  can be developed by Java, .NET or any other programming language. The integration server
  should be available from the internet. Normally there will be a popup window after a user
  clicks the web link or custom button. If there is a user interface, it is recommended to build
  the popup page theme the same as CRM On Demand. If there is no user interface, it’s better
  to have a progress bar if it takes a while to finish and then close itself automatically. Any error
  with detailed data should be outputted into log files and then send to administrators for
  troubleshooting and correction. Log files can be configured as a daily archived log or
  published at a web URL for easy download.




                                   Five Practical Solutions for Integrating with Oracle CRM On Demand   t   7
Best Practices
      • Get SSO token from the CRM On Demand page and send to web server for verification. Get
        the current user’s session through SSO token to update the record.
      • Display friendly error message and suggested correction actions if any error occurs occur.

Solution 3: EMBEDDED WEB APPLET
    Overview
    While Web Integration introduces how to create a web applet in CRM On Demand, Embedded Web
    Applets leverage HTML tags <iframe> to create an embedded web applet in CRM On Demand
    page. This approach allows the custom functions to behave the same as the original CRM On
    Demand and provides a consistent user experience.

    Embedded Web Applets apply to scenarios where you need to introduce a custom section in a
    record type related section where the data in this section needs to be loaded together with the
    record type page. Additionally, it allows a user to directly manage the data in this record type page.

    Details
      1. Configure web applet
         Go to Admin > Application Customization > Record Type > Record Type Web Applet > New.
         Create a web applet with type URL. Enter the URL that outputs the HTML code within the
         <iframe> tag.




                                          Five Practical Solutions for Integrating with Oracle CRM On Demand   t   8
Sample of embedded web applet:




  2. Develop and deploy the web application
    Embedded Web Applets are designed as a web application that runs on an integration server.
    It can be developed by Java, .NET or any other programming language. The integration server
    should be available from the internet. Again, it is recommended to build the web applet theme
    the same as CRM On Demand. Any error with detailed data should be outputted into log files
    and then send to administrators for troubleshooting and correction. Log files can be
    configured as a daily archived log or published at a web URL for easy download.

Best Practices
  • Avoid loading too much data initially. Display the web applet as soon as CRM On Demand
    loads.
  • Pop up friendly error message and suggested correction actions if any error occurs.




                                    Five Practical Solutions for Integrating with Oracle CRM On Demand   t   9
Solution 4: DATA CONVERSION
    Overview
    When CRM On Demand goes live it is often necessary to load initial data (e.g. Account, Contact,
    Products, etc.) as well as to keep this data synchronized in real time with its source systems. CRM
    On Demand offers a data import function in the Admin global link, although this feature is not able
    to import data automatically from the back end. The data import function requires administrator
    involvement.

    Data Conversion is designed as a standalone application running on integration server with a
    defined schedule. The data conversion function reads data placed in the staging area from source
    systems interface. Data format can be in various formats such as interface tables, flat files, and web
    services.

    Figure 4 shows the flow of Data Conversion integrating with CRM On Demand.




    Figure 4 - Flow of Data Conversion Integrating with CRM On Demand



                                         Five Practical Solutions for Integrating with Oracle CRM On Demand   t   10
Details
  1. Extract data from source systems to the staging area
    The first step is to determine what data is in the source systems, as well as the data’s location.
    Next, determine the strategy to extract data from the source system and transform it to the
    staging area. The data format in the staging area is flexible, making both source system
    extraction and CRM On Demand import convenient (e.g. interface table in database and flat
    files).

  2. Develop the data mapping and conversion rules
    A critical step in data conversion is to document the requirements around data mapping and
    conversion rules. The table below illustrates a sample of data mapping and conversion rules.




  3. Develop and deploy the data conversion application
    Data conversion is typically designed as a standalone back end application that is running on
    an integration server. It can be developed by Java, .NET or any other programming languages.
    For the initial data load, data conversion is executed once to import all the data. For data
    synchronization, data conversion is executed at defined time intervals determined by how
    quickly data conversion needs to synchronize data between source systems and CRM On
    Demand. A number of scheduler tools are available in the marketplace to set up the data
    synchronization process.


                                    Five Practical Solutions for Integrating with Oracle CRM On Demand   t   11
At the end of each data conversion a status report should be sent to the appropriate adminis-
         trator. The status report should include at the very least the start time, end time, number of
         records processed, number of successful records, and number of failed records. Any errors
         should be outputted into log files then sent to administrators for troubleshooting and
         correction. Log files can be configured as a daily archived log or published at a web URL for
         easy download.

    Best Practices
      • Create an Activity with the status information in CRM On Demand and associate the Activity
        with administrators so that they are able to view the status on the home page as soon as they
        log in to CRM On Demand.

Solution 5: MAIL RESPONSE
    Overview
    The Service Request and Activity, Account, and Contact record types in CRM On Demand provide
    the core functionality of a lightweight CRM Call Center. Providing an approach to allow customers
    to send mail to update a service request automatically makes the CRM Call Center more flexible.

    Typically, CRM On Demand is configured to send the notification with a FROM mail address (e.g.
    mycase@example.com) and specific mail subject including the SR# to customer when an SR has
    been created. The customer can reply to the mail with updates or attachments.

    Mail Response is a standalone back end application running on integration server to monitor this
    mailbox. This function reads the new mail subject and validates if a SR# exists in CRM On Demand.
    If yes, Mail Response creates a new Activity and Attachment that is associated to the SR.

    If the SR# does not exist in the application, Mail Response can be configured to simply skip the new
    mail and move to another folder. Figure 5 shows the flow of a Mail Response integration with CRM
    On Demand.




                                        Five Practical Solutions for Integrating with Oracle CRM On Demand   t   12
Figure 5 - Flow of a Mail Response Integration with CRM On Demand.




                                    Five Practical Solutions for Integrating with Oracle CRM On Demand   t   13
Details
  1. Configure workflow when a new SR saved
     Go to Admin > Workflow Configuration > New. Create a workflow with an Action > Create
     Send Mail.




     Create the email template that it is sent to the customer. There should be a fixed pattern with
     the SR# in the mail subject and the correct FROM email address provided to allow a
     customer reply.

  2. Develop and deploy the mail response application
     Mail Response is typically designed as a standalone backend application that is running on an
     integration server. It can be developed by Java, .NET or any other programming languages.
     Mail Response is executed on defined time intervals and decides how quickly Mail Response
     needs to process the new mail in the Inbox. Any Queue Manager errors should be reported
     with detailed data and outputted into log files sent to administrators for troubleshooting and
     correction. Log files can be configured as daily archived logs or published at a web URL for
     easy download.

Best Practices
  • Design the mail subject pattern identification mechanism to be flexible. It should be config-
    urable and easy to update without code change.
  • Filter out auto-reply (e.g. out of office mail or spam mails) responses.




                                    Five Practical Solutions for Integrating with Oracle CRM On Demand   t   14
SUMMARY
   The five solutions covered in this paper are flexible and lightweight technical solutions that best fit
   the integration architecture of Oracle CRM On Demand. While Web Services is a key to Oracle
   CRM On Demand integration, we can look at other Service Oriented Architecture (SOA) solutions
   (e.g. SOA middleware, BPEL, etc.) for other solutions, as long as the customer’s business needs are
   satisfied.




                                         Five Practical Solutions for Integrating with Oracle CRM On Demand   t   15

Mais conteúdo relacionado

Mais procurados

Microsoft Dynamic CRM
Microsoft Dynamic CRMMicrosoft Dynamic CRM
Microsoft Dynamic CRMmmmmmm_mala
 
Customer Relationship Management (CRM)
Customer Relationship Management (CRM)Customer Relationship Management (CRM)
Customer Relationship Management (CRM)Jaiser Abbas
 
Information Builders WebFocus
Information Builders   WebFocusInformation Builders   WebFocus
Information Builders WebFocusmarshajc
 
In Mind Cloud - Product Release - 2005
In Mind Cloud - Product Release - 2005In Mind Cloud - Product Release - 2005
In Mind Cloud - Product Release - 2005In Mind Cloud
 
Readiness for CRM - 11 Steps to Plan & Prepare for CRM
Readiness for CRM - 11 Steps to Plan & Prepare for CRMReadiness for CRM - 11 Steps to Plan & Prepare for CRM
Readiness for CRM - 11 Steps to Plan & Prepare for CRMPreact Ltd
 
5 Essential Features of Call Center CRM
5 Essential Features of Call Center CRM5 Essential Features of Call Center CRM
5 Essential Features of Call Center CRMKirti Khanna
 
Reduce Churn, Increase Revenue, and Scale Up with CPQ
Reduce Churn, Increase Revenue, and Scale Up with CPQReduce Churn, Increase Revenue, and Scale Up with CPQ
Reduce Churn, Increase Revenue, and Scale Up with CPQDocmation
 
CRM - Customer Relationship Management
CRM - Customer Relationship ManagementCRM - Customer Relationship Management
CRM - Customer Relationship Management1click
 
It Solution On Value Chain
It Solution On Value ChainIt Solution On Value Chain
It Solution On Value Chainerwinsumargo
 
Sugar Crm Marketing Industries Presentation 2 Sales Force Automation
Sugar Crm Marketing Industries Presentation   2 Sales Force AutomationSugar Crm Marketing Industries Presentation   2 Sales Force Automation
Sugar Crm Marketing Industries Presentation 2 Sales Force AutomationThe Information Lab Netherlands
 
In Mind Cloud - Product Release - 2108
In Mind Cloud - Product Release - 2108In Mind Cloud - Product Release - 2108
In Mind Cloud - Product Release - 2108In Mind Cloud
 
Case study: Asian Operators Designs Strategic Crm Roadmap
Case study: Asian Operators Designs Strategic Crm RoadmapCase study: Asian Operators Designs Strategic Crm Roadmap
Case study: Asian Operators Designs Strategic Crm RoadmapPeppers & Rogers Group
 

Mais procurados (19)

CRM Roadmap - Sample
CRM Roadmap - SampleCRM Roadmap - Sample
CRM Roadmap - Sample
 
Microsoft Dynamic CRM
Microsoft Dynamic CRMMicrosoft Dynamic CRM
Microsoft Dynamic CRM
 
CRM
CRMCRM
CRM
 
CRM Introduction
CRM IntroductionCRM Introduction
CRM Introduction
 
Customer Relationship Management (CRM)
Customer Relationship Management (CRM)Customer Relationship Management (CRM)
Customer Relationship Management (CRM)
 
Information Builders WebFocus
Information Builders   WebFocusInformation Builders   WebFocus
Information Builders WebFocus
 
In Mind Cloud - Product Release - 2005
In Mind Cloud - Product Release - 2005In Mind Cloud - Product Release - 2005
In Mind Cloud - Product Release - 2005
 
Readiness for CRM - 11 Steps to Plan & Prepare for CRM
Readiness for CRM - 11 Steps to Plan & Prepare for CRMReadiness for CRM - 11 Steps to Plan & Prepare for CRM
Readiness for CRM - 11 Steps to Plan & Prepare for CRM
 
Op9 Premier Ds
Op9 Premier DsOp9 Premier Ds
Op9 Premier Ds
 
5 Essential Features of Call Center CRM
5 Essential Features of Call Center CRM5 Essential Features of Call Center CRM
5 Essential Features of Call Center CRM
 
Reduce Churn, Increase Revenue, and Scale Up with CPQ
Reduce Churn, Increase Revenue, and Scale Up with CPQReduce Churn, Increase Revenue, and Scale Up with CPQ
Reduce Churn, Increase Revenue, and Scale Up with CPQ
 
Banker In A Box
Banker In A BoxBanker In A Box
Banker In A Box
 
CRM - Customer Relationship Management
CRM - Customer Relationship ManagementCRM - Customer Relationship Management
CRM - Customer Relationship Management
 
Analytical crm and social crm
Analytical crm and social crmAnalytical crm and social crm
Analytical crm and social crm
 
It Solution On Value Chain
It Solution On Value ChainIt Solution On Value Chain
It Solution On Value Chain
 
Crm in Amazon
Crm in AmazonCrm in Amazon
Crm in Amazon
 
Sugar Crm Marketing Industries Presentation 2 Sales Force Automation
Sugar Crm Marketing Industries Presentation   2 Sales Force AutomationSugar Crm Marketing Industries Presentation   2 Sales Force Automation
Sugar Crm Marketing Industries Presentation 2 Sales Force Automation
 
In Mind Cloud - Product Release - 2108
In Mind Cloud - Product Release - 2108In Mind Cloud - Product Release - 2108
In Mind Cloud - Product Release - 2108
 
Case study: Asian Operators Designs Strategic Crm Roadmap
Case study: Asian Operators Designs Strategic Crm RoadmapCase study: Asian Operators Designs Strategic Crm Roadmap
Case study: Asian Operators Designs Strategic Crm Roadmap
 

Semelhante a Five Practical Solutions for Integrating with Oracle CRM On Demand

Dev day paris020415
Dev day paris020415Dev day paris020415
Dev day paris020415pdufourSFDC
 
Microsoft Dynamics CRM Multi - Tier Architecture
Microsoft Dynamics CRM Multi - Tier ArchitectureMicrosoft Dynamics CRM Multi - Tier Architecture
Microsoft Dynamics CRM Multi - Tier ArchitectureNaveen Kumar
 
Salesforce Presentation
Salesforce PresentationSalesforce Presentation
Salesforce PresentationChetna Purohit
 
Salesforce Lightning workshop Hartford - 12 March
Salesforce Lightning workshop Hartford - 12 MarchSalesforce Lightning workshop Hartford - 12 March
Salesforce Lightning workshop Hartford - 12 MarchJitendra Zaa
 
2. 8 things that will make your business love your developers again
2. 8 things that will make your business love your developers again2. 8 things that will make your business love your developers again
2. 8 things that will make your business love your developers againEuroCloud
 
All About Salesforce Lightning
All About Salesforce LightningAll About Salesforce Lightning
All About Salesforce LightningJanBask
 
IBM Forms Experience Builder on Cloud
IBM Forms Experience Builder on CloudIBM Forms Experience Builder on Cloud
IBM Forms Experience Builder on Cloudmlech23
 
Integration with Microsoft CRM using Mule ESB
Integration with Microsoft CRM using Mule ESBIntegration with Microsoft CRM using Mule ESB
Integration with Microsoft CRM using Mule ESBSanjeet Pandey
 
Suisse Romande SF DG - Lightning workshop
Suisse Romande SF DG - Lightning workshopSuisse Romande SF DG - Lightning workshop
Suisse Romande SF DG - Lightning workshopGnanasekaran Thoppae
 
Get Data from Microsoft CRM using Mule ESB
Get Data from Microsoft CRM using Mule ESBGet Data from Microsoft CRM using Mule ESB
Get Data from Microsoft CRM using Mule ESBSanjeet Pandey
 
CloudOps evening presentation from Salesforce.com
CloudOps evening presentation from Salesforce.comCloudOps evening presentation from Salesforce.com
CloudOps evening presentation from Salesforce.comAlistair Croll
 
Dynamics AX and Salesforce Integration
Dynamics AX and Salesforce IntegrationDynamics AX and Salesforce Integration
Dynamics AX and Salesforce IntegrationGlenn Johnson
 
IBM Forms Experience Builder on Cloud
IBM Forms Experience Builder on Cloud IBM Forms Experience Builder on Cloud
IBM Forms Experience Builder on Cloud mlech23
 
Primavera unifier integration_wp
Primavera unifier integration_wpPrimavera unifier integration_wp
Primavera unifier integration_wpCampin Chou
 
WebServices Using Salesforce
WebServices Using SalesforceWebServices Using Salesforce
WebServices Using SalesforceAbdulImrankhan7
 
IBM Forms Experience Builder - Web Form Apps for Marketers
IBM Forms Experience Builder - Web Form Apps for MarketersIBM Forms Experience Builder - Web Form Apps for Marketers
IBM Forms Experience Builder - Web Form Apps for Marketersmlech23
 
Lightning Developer Week - Bangalore Salesforce Developer Group
Lightning Developer Week - Bangalore Salesforce Developer GroupLightning Developer Week - Bangalore Salesforce Developer Group
Lightning Developer Week - Bangalore Salesforce Developer GroupAbhilash Kuntar
 

Semelhante a Five Practical Solutions for Integrating with Oracle CRM On Demand (20)

Dev day paris020415
Dev day paris020415Dev day paris020415
Dev day paris020415
 
Microsoft Dynamics CRM Multi - Tier Architecture
Microsoft Dynamics CRM Multi - Tier ArchitectureMicrosoft Dynamics CRM Multi - Tier Architecture
Microsoft Dynamics CRM Multi - Tier Architecture
 
Salesforce Presentation
Salesforce PresentationSalesforce Presentation
Salesforce Presentation
 
Salesforce Lightning workshop
Salesforce Lightning workshopSalesforce Lightning workshop
Salesforce Lightning workshop
 
Salesforce Lightning workshop Hartford - 12 March
Salesforce Lightning workshop Hartford - 12 MarchSalesforce Lightning workshop Hartford - 12 March
Salesforce Lightning workshop Hartford - 12 March
 
2. 8 things that will make your business love your developers again
2. 8 things that will make your business love your developers again2. 8 things that will make your business love your developers again
2. 8 things that will make your business love your developers again
 
All About Salesforce Lightning
All About Salesforce LightningAll About Salesforce Lightning
All About Salesforce Lightning
 
IBM Forms Experience Builder on Cloud
IBM Forms Experience Builder on CloudIBM Forms Experience Builder on Cloud
IBM Forms Experience Builder on Cloud
 
Integration with Microsoft CRM using Mule ESB
Integration with Microsoft CRM using Mule ESBIntegration with Microsoft CRM using Mule ESB
Integration with Microsoft CRM using Mule ESB
 
Suisse Romande SF DG - Lightning workshop
Suisse Romande SF DG - Lightning workshopSuisse Romande SF DG - Lightning workshop
Suisse Romande SF DG - Lightning workshop
 
Get Data from Microsoft CRM using Mule ESB
Get Data from Microsoft CRM using Mule ESBGet Data from Microsoft CRM using Mule ESB
Get Data from Microsoft CRM using Mule ESB
 
CloudOps evening presentation from Salesforce.com
CloudOps evening presentation from Salesforce.comCloudOps evening presentation from Salesforce.com
CloudOps evening presentation from Salesforce.com
 
Dynamics AX and Salesforce Integration
Dynamics AX and Salesforce IntegrationDynamics AX and Salesforce Integration
Dynamics AX and Salesforce Integration
 
Lightning week - Paris DUG
Lightning week - Paris DUGLightning week - Paris DUG
Lightning week - Paris DUG
 
Sakshi Report
Sakshi ReportSakshi Report
Sakshi Report
 
IBM Forms Experience Builder on Cloud
IBM Forms Experience Builder on Cloud IBM Forms Experience Builder on Cloud
IBM Forms Experience Builder on Cloud
 
Primavera unifier integration_wp
Primavera unifier integration_wpPrimavera unifier integration_wp
Primavera unifier integration_wp
 
WebServices Using Salesforce
WebServices Using SalesforceWebServices Using Salesforce
WebServices Using Salesforce
 
IBM Forms Experience Builder - Web Form Apps for Marketers
IBM Forms Experience Builder - Web Form Apps for MarketersIBM Forms Experience Builder - Web Form Apps for Marketers
IBM Forms Experience Builder - Web Form Apps for Marketers
 
Lightning Developer Week - Bangalore Salesforce Developer Group
Lightning Developer Week - Bangalore Salesforce Developer GroupLightning Developer Week - Bangalore Salesforce Developer Group
Lightning Developer Week - Bangalore Salesforce Developer Group
 

Mais de Perficient, Inc.

Driving Strong 2020 Holiday Season Results
Driving Strong 2020 Holiday Season ResultsDriving Strong 2020 Holiday Season Results
Driving Strong 2020 Holiday Season ResultsPerficient, Inc.
 
Transforming Pharmacovigilance Workflows with AI & Automation
Transforming Pharmacovigilance Workflows with AI & Automation Transforming Pharmacovigilance Workflows with AI & Automation
Transforming Pharmacovigilance Workflows with AI & Automation Perficient, Inc.
 
The Secret to Acquiring and Retaining Customers in Financial Services
The Secret to Acquiring and Retaining Customers in Financial ServicesThe Secret to Acquiring and Retaining Customers in Financial Services
The Secret to Acquiring and Retaining Customers in Financial ServicesPerficient, Inc.
 
Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.
Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.
Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.Perficient, Inc.
 
Content, Commerce, and... COVID
Content, Commerce, and... COVIDContent, Commerce, and... COVID
Content, Commerce, and... COVIDPerficient, Inc.
 
Centene's Financial Transformation Journey: A OneStream Success Story
Centene's Financial Transformation Journey: A OneStream Success StoryCentene's Financial Transformation Journey: A OneStream Success Story
Centene's Financial Transformation Journey: A OneStream Success StoryPerficient, Inc.
 
Automate Medical Coding With WHODrug Koda
Automate Medical Coding With WHODrug KodaAutomate Medical Coding With WHODrug Koda
Automate Medical Coding With WHODrug KodaPerficient, Inc.
 
Preparing for Your Oracle, Medidata, and Veeva CTMS Migration Project
Preparing for Your Oracle, Medidata, and Veeva CTMS Migration ProjectPreparing for Your Oracle, Medidata, and Veeva CTMS Migration Project
Preparing for Your Oracle, Medidata, and Veeva CTMS Migration ProjectPerficient, Inc.
 
Accelerating Partner Management: How Manufacturers Can Navigate Covid-19
Accelerating Partner Management: How Manufacturers Can Navigate Covid-19Accelerating Partner Management: How Manufacturers Can Navigate Covid-19
Accelerating Partner Management: How Manufacturers Can Navigate Covid-19Perficient, Inc.
 
The Critical Role of Audience Intelligence with Eric Enge and Rand Fishkin
The Critical Role of Audience Intelligence with Eric Enge and Rand FishkinThe Critical Role of Audience Intelligence with Eric Enge and Rand Fishkin
The Critical Role of Audience Intelligence with Eric Enge and Rand FishkinPerficient, Inc.
 
Cardtronics Future Ready with Oracle EPM Cloud
Cardtronics Future Ready with Oracle EPM CloudCardtronics Future Ready with Oracle EPM Cloud
Cardtronics Future Ready with Oracle EPM CloudPerficient, Inc.
 
Teams Summit - What is New and Coming
Teams Summit -  What is New and ComingTeams Summit -  What is New and Coming
Teams Summit - What is New and ComingPerficient, Inc.
 
Empower Your Organization with Teams & Remote Work Crisis Management
Empower Your Organization with Teams & Remote Work Crisis ManagementEmpower Your Organization with Teams & Remote Work Crisis Management
Empower Your Organization with Teams & Remote Work Crisis ManagementPerficient, Inc.
 
Adoption & Change Management Overview
Adoption & Change Management OverviewAdoption & Change Management Overview
Adoption & Change Management OverviewPerficient, Inc.
 
Microsoft Teams: Measuring Activity of Employees Working from Home
Microsoft Teams: Measuring Activity of Employees Working from HomeMicrosoft Teams: Measuring Activity of Employees Working from Home
Microsoft Teams: Measuring Activity of Employees Working from HomePerficient, Inc.
 
Securing Teams with Microsoft 365 Security for Remote Work
Securing Teams with Microsoft 365 Security for Remote WorkSecuring Teams with Microsoft 365 Security for Remote Work
Securing Teams with Microsoft 365 Security for Remote WorkPerficient, Inc.
 
Infrastructure Best Practices for Teams Remote Workers
Infrastructure Best Practices for Teams Remote WorkersInfrastructure Best Practices for Teams Remote Workers
Infrastructure Best Practices for Teams Remote WorkersPerficient, Inc.
 
Accelerate Adoption for Microsoft Teams
Accelerate Adoption for Microsoft TeamsAccelerate Adoption for Microsoft Teams
Accelerate Adoption for Microsoft TeamsPerficient, Inc.
 
Preparing for Project Cortex and the Future of Knowledge Management
Preparing for Project Cortex and the Future of Knowledge ManagementPreparing for Project Cortex and the Future of Knowledge Management
Preparing for Project Cortex and the Future of Knowledge ManagementPerficient, Inc.
 
Utilizing Microsoft 365 Security for Remote Work
Utilizing Microsoft 365 Security for Remote Work Utilizing Microsoft 365 Security for Remote Work
Utilizing Microsoft 365 Security for Remote Work Perficient, Inc.
 

Mais de Perficient, Inc. (20)

Driving Strong 2020 Holiday Season Results
Driving Strong 2020 Holiday Season ResultsDriving Strong 2020 Holiday Season Results
Driving Strong 2020 Holiday Season Results
 
Transforming Pharmacovigilance Workflows with AI & Automation
Transforming Pharmacovigilance Workflows with AI & Automation Transforming Pharmacovigilance Workflows with AI & Automation
Transforming Pharmacovigilance Workflows with AI & Automation
 
The Secret to Acquiring and Retaining Customers in Financial Services
The Secret to Acquiring and Retaining Customers in Financial ServicesThe Secret to Acquiring and Retaining Customers in Financial Services
The Secret to Acquiring and Retaining Customers in Financial Services
 
Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.
Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.
Oracle Strategic Modeling Live: Defined. Discussed. Demonstrated.
 
Content, Commerce, and... COVID
Content, Commerce, and... COVIDContent, Commerce, and... COVID
Content, Commerce, and... COVID
 
Centene's Financial Transformation Journey: A OneStream Success Story
Centene's Financial Transformation Journey: A OneStream Success StoryCentene's Financial Transformation Journey: A OneStream Success Story
Centene's Financial Transformation Journey: A OneStream Success Story
 
Automate Medical Coding With WHODrug Koda
Automate Medical Coding With WHODrug KodaAutomate Medical Coding With WHODrug Koda
Automate Medical Coding With WHODrug Koda
 
Preparing for Your Oracle, Medidata, and Veeva CTMS Migration Project
Preparing for Your Oracle, Medidata, and Veeva CTMS Migration ProjectPreparing for Your Oracle, Medidata, and Veeva CTMS Migration Project
Preparing for Your Oracle, Medidata, and Veeva CTMS Migration Project
 
Accelerating Partner Management: How Manufacturers Can Navigate Covid-19
Accelerating Partner Management: How Manufacturers Can Navigate Covid-19Accelerating Partner Management: How Manufacturers Can Navigate Covid-19
Accelerating Partner Management: How Manufacturers Can Navigate Covid-19
 
The Critical Role of Audience Intelligence with Eric Enge and Rand Fishkin
The Critical Role of Audience Intelligence with Eric Enge and Rand FishkinThe Critical Role of Audience Intelligence with Eric Enge and Rand Fishkin
The Critical Role of Audience Intelligence with Eric Enge and Rand Fishkin
 
Cardtronics Future Ready with Oracle EPM Cloud
Cardtronics Future Ready with Oracle EPM CloudCardtronics Future Ready with Oracle EPM Cloud
Cardtronics Future Ready with Oracle EPM Cloud
 
Teams Summit - What is New and Coming
Teams Summit -  What is New and ComingTeams Summit -  What is New and Coming
Teams Summit - What is New and Coming
 
Empower Your Organization with Teams & Remote Work Crisis Management
Empower Your Organization with Teams & Remote Work Crisis ManagementEmpower Your Organization with Teams & Remote Work Crisis Management
Empower Your Organization with Teams & Remote Work Crisis Management
 
Adoption & Change Management Overview
Adoption & Change Management OverviewAdoption & Change Management Overview
Adoption & Change Management Overview
 
Microsoft Teams: Measuring Activity of Employees Working from Home
Microsoft Teams: Measuring Activity of Employees Working from HomeMicrosoft Teams: Measuring Activity of Employees Working from Home
Microsoft Teams: Measuring Activity of Employees Working from Home
 
Securing Teams with Microsoft 365 Security for Remote Work
Securing Teams with Microsoft 365 Security for Remote WorkSecuring Teams with Microsoft 365 Security for Remote Work
Securing Teams with Microsoft 365 Security for Remote Work
 
Infrastructure Best Practices for Teams Remote Workers
Infrastructure Best Practices for Teams Remote WorkersInfrastructure Best Practices for Teams Remote Workers
Infrastructure Best Practices for Teams Remote Workers
 
Accelerate Adoption for Microsoft Teams
Accelerate Adoption for Microsoft TeamsAccelerate Adoption for Microsoft Teams
Accelerate Adoption for Microsoft Teams
 
Preparing for Project Cortex and the Future of Knowledge Management
Preparing for Project Cortex and the Future of Knowledge ManagementPreparing for Project Cortex and the Future of Knowledge Management
Preparing for Project Cortex and the Future of Knowledge Management
 
Utilizing Microsoft 365 Security for Remote Work
Utilizing Microsoft 365 Security for Remote Work Utilizing Microsoft 365 Security for Remote Work
Utilizing Microsoft 365 Security for Remote Work
 

Último

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????blackmambaettijean
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 

Último (20)

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 

Five Practical Solutions for Integrating with Oracle CRM On Demand

  • 1. A C R M W H I T E PA P E R APRIL 2011 Five Practical Solutions for Integrating with Oracle CRM On Demand SUBSCRIBE TO PERFICIENT BLOGS ONLINE www.Perficient.com/SocialMedia BECOME A FAN OF PERFICIENT ON FACEBOOK www.Facebook.com/Perficient FOLLOW PERFICIENT ON TWITTER www.Twitter.com/Perficient DOWNLOAD PERFICIENT WHITE PAPERS www.Perficient.com/WhitePapers Copyright © 2007-2011 Perficient, Inc. All rights reserved. This material is or contains Proprietary Information, Confidential Information and/or Trade Secrets of Perficient, Inc. Disclosure to third parties and or any person not authorized by Perficient, Inc. is prohibited. Use may be subject to applicable non-disclosure agreements. Any distribution or use of this material in whole or in part without the prior written approval of Perficient, Inc. is prohibited and will be subject to legal action.
  • 2. About The Author Simon Wang is a Project Manager in Perficient’s China Global Delivery Center. He is a Certified Scrum Master/Developer, Six Sigma Green Belt and has more than ten years’ experience in the IT industry. Simon specializes in project management, CRM and business intelligence solutions, process improvement and distributed delivery using the Agile methodology. Simon Wang simon.wang@perficient.com ABSTRACT Overview Oracle CRM On Demand offers a Web Service interface that allows customers to access their hosted data from any Web Services-enabled client. This paper provides an overview of a Web Services- based integration architecture and details five (5) practical solutions that enable integration with CRM On Demand. Introduction to Oracle CRM On Demand Integration Oracle CRM On Demand is a comprehensive, scalable and fast-to-deploy CRM solution based on the SaaS model. Pre-built record types and out of the box (OTB) functionality enables customers to begin leveraging CRM On Demand as quickly as an account is created. The Web Services framework built into CRM On Demand allows customers to integrate to existing applications to support their business processes and functional requirements. To the right is a basic diagram depicting the CRM On Demand architecture. Figure 1 – High-Level Integrated CRM Architecture Five Practical Solutions for Integrating with Oracle CRM On Demand t 2
  • 3. This white page introduces five practical integration solutions: • Queue Manager • Web Integration • Embedded Web Applet • Data Conversion • Mail Response Solution 1: QUEUE MANAGER Overview CRM On Demand offers a special web service called the Integration Event Queue. This web service queues all the messages, which follow a ‘first-in, first-out’ manner. The message is sent by a CRM On Demand workflow when specific rules are met. These rules are configured in a workflow that assigns an action to insert a message into the Integration Event Queue (IEQ). The IEQ and workflow features enable a standalone application running on an integration server to manage data in CRM On Demand. This standalone application is called Queue Manager. Queue Manager can read the Integration Event Queue at defined intervals and can obtain the record type name, row ID and workflow name, and then proceed with defined business logic. Finally, the process deletes the message from IEQ. Queue Manager fits in some scenarios when follow-up back-end operations are required after a user’s action. Figure 2 - Queue Manager Integration with CRM On Demand Five Practical Solutions for Integrating with Oracle CRM On Demand t 3
  • 4. Steps 1. Configure Queue Go to Admin > Integration Event Administration > Integration Event Queue Management > New Queue 2. Configure Workflow Go to Admin > Workflow Configuration > New. Create a workflow under Action > Create Integration Event. Configure this action to select the fields being monitored and sent to the Integration Event Queue. Five Practical Solutions for Integrating with Oracle CRM On Demand t 4
  • 5. 3. Develop and Deploy the Queue Manager Application Queue Manager is usually designed as a standalone back-end application running on an integration server. It can be developed by Java, .NET or any other programming language. Queue Manager is executed at defined intervals determined by how quickly Queue Manager needs to process the message sent from a workflow (i.e. every five minutes). There are scheduler tools that can be integrated with Queue Manager, such as Quartz written in Java and Windows Scheduler written in .NET. Error reports with detailed data can be generated into log files and then sent notification to administrators for troubleshooting and correction. Log files can be configured as daily archived logs or published at a web URL for easy download. Best Practices Deploy one Queue Manager instance to process one event queue. There can be more than one type of event from different workflows as long as workflow name is part of the message. Solution 2: WEB INTEGRATION Overview CRM On Demand offers powerful customization in the Admin global link. Administrators can create new custom Web Link fields and custom buttons in a web applet. These web links and custom buttons enable CRM On Demand to provide an entry for custom web application out of CRM On Demand. The custom web application can be triggered with parameters passed from the current row of the record type when a user clicks a web link or a custom button. Web integration is typically used in scenarios where user interaction is required. Figure 3 shows the flow of a Web Integration with CRM On Demand. Figure 3 - Flow of a Web Integration with CRM On Demand Five Practical Solutions for Integrating with Oracle CRM On Demand t 5
  • 6. Details 1. Configure web link or custom button • Web link Go to Admin > Application Customization > Record Type > Record Type Field Setup > New Field. Create a new field with type “Web Link”. Edit the Web Link and point the link to the custom web application, with the parameters. Sample of a Web Link: Five Practical Solutions for Integrating with Oracle CRM On Demand t 6
  • 7. • Custom Button Go to Admin > Application Customization > Record Type > Record Type Web Applet > New. Create a web applet with type HTML. Choose HTML and JavaScript to generate the buttons and implement the action when a user clicks the buttons. A sample of custom buttons: 2. Develop and deploy the web application Web integration is designed as a web application that is running on an integration server. It can be developed by Java, .NET or any other programming language. The integration server should be available from the internet. Normally there will be a popup window after a user clicks the web link or custom button. If there is a user interface, it is recommended to build the popup page theme the same as CRM On Demand. If there is no user interface, it’s better to have a progress bar if it takes a while to finish and then close itself automatically. Any error with detailed data should be outputted into log files and then send to administrators for troubleshooting and correction. Log files can be configured as a daily archived log or published at a web URL for easy download. Five Practical Solutions for Integrating with Oracle CRM On Demand t 7
  • 8. Best Practices • Get SSO token from the CRM On Demand page and send to web server for verification. Get the current user’s session through SSO token to update the record. • Display friendly error message and suggested correction actions if any error occurs occur. Solution 3: EMBEDDED WEB APPLET Overview While Web Integration introduces how to create a web applet in CRM On Demand, Embedded Web Applets leverage HTML tags <iframe> to create an embedded web applet in CRM On Demand page. This approach allows the custom functions to behave the same as the original CRM On Demand and provides a consistent user experience. Embedded Web Applets apply to scenarios where you need to introduce a custom section in a record type related section where the data in this section needs to be loaded together with the record type page. Additionally, it allows a user to directly manage the data in this record type page. Details 1. Configure web applet Go to Admin > Application Customization > Record Type > Record Type Web Applet > New. Create a web applet with type URL. Enter the URL that outputs the HTML code within the <iframe> tag. Five Practical Solutions for Integrating with Oracle CRM On Demand t 8
  • 9. Sample of embedded web applet: 2. Develop and deploy the web application Embedded Web Applets are designed as a web application that runs on an integration server. It can be developed by Java, .NET or any other programming language. The integration server should be available from the internet. Again, it is recommended to build the web applet theme the same as CRM On Demand. Any error with detailed data should be outputted into log files and then send to administrators for troubleshooting and correction. Log files can be configured as a daily archived log or published at a web URL for easy download. Best Practices • Avoid loading too much data initially. Display the web applet as soon as CRM On Demand loads. • Pop up friendly error message and suggested correction actions if any error occurs. Five Practical Solutions for Integrating with Oracle CRM On Demand t 9
  • 10. Solution 4: DATA CONVERSION Overview When CRM On Demand goes live it is often necessary to load initial data (e.g. Account, Contact, Products, etc.) as well as to keep this data synchronized in real time with its source systems. CRM On Demand offers a data import function in the Admin global link, although this feature is not able to import data automatically from the back end. The data import function requires administrator involvement. Data Conversion is designed as a standalone application running on integration server with a defined schedule. The data conversion function reads data placed in the staging area from source systems interface. Data format can be in various formats such as interface tables, flat files, and web services. Figure 4 shows the flow of Data Conversion integrating with CRM On Demand. Figure 4 - Flow of Data Conversion Integrating with CRM On Demand Five Practical Solutions for Integrating with Oracle CRM On Demand t 10
  • 11. Details 1. Extract data from source systems to the staging area The first step is to determine what data is in the source systems, as well as the data’s location. Next, determine the strategy to extract data from the source system and transform it to the staging area. The data format in the staging area is flexible, making both source system extraction and CRM On Demand import convenient (e.g. interface table in database and flat files). 2. Develop the data mapping and conversion rules A critical step in data conversion is to document the requirements around data mapping and conversion rules. The table below illustrates a sample of data mapping and conversion rules. 3. Develop and deploy the data conversion application Data conversion is typically designed as a standalone back end application that is running on an integration server. It can be developed by Java, .NET or any other programming languages. For the initial data load, data conversion is executed once to import all the data. For data synchronization, data conversion is executed at defined time intervals determined by how quickly data conversion needs to synchronize data between source systems and CRM On Demand. A number of scheduler tools are available in the marketplace to set up the data synchronization process. Five Practical Solutions for Integrating with Oracle CRM On Demand t 11
  • 12. At the end of each data conversion a status report should be sent to the appropriate adminis- trator. The status report should include at the very least the start time, end time, number of records processed, number of successful records, and number of failed records. Any errors should be outputted into log files then sent to administrators for troubleshooting and correction. Log files can be configured as a daily archived log or published at a web URL for easy download. Best Practices • Create an Activity with the status information in CRM On Demand and associate the Activity with administrators so that they are able to view the status on the home page as soon as they log in to CRM On Demand. Solution 5: MAIL RESPONSE Overview The Service Request and Activity, Account, and Contact record types in CRM On Demand provide the core functionality of a lightweight CRM Call Center. Providing an approach to allow customers to send mail to update a service request automatically makes the CRM Call Center more flexible. Typically, CRM On Demand is configured to send the notification with a FROM mail address (e.g. mycase@example.com) and specific mail subject including the SR# to customer when an SR has been created. The customer can reply to the mail with updates or attachments. Mail Response is a standalone back end application running on integration server to monitor this mailbox. This function reads the new mail subject and validates if a SR# exists in CRM On Demand. If yes, Mail Response creates a new Activity and Attachment that is associated to the SR. If the SR# does not exist in the application, Mail Response can be configured to simply skip the new mail and move to another folder. Figure 5 shows the flow of a Mail Response integration with CRM On Demand. Five Practical Solutions for Integrating with Oracle CRM On Demand t 12
  • 13. Figure 5 - Flow of a Mail Response Integration with CRM On Demand. Five Practical Solutions for Integrating with Oracle CRM On Demand t 13
  • 14. Details 1. Configure workflow when a new SR saved Go to Admin > Workflow Configuration > New. Create a workflow with an Action > Create Send Mail. Create the email template that it is sent to the customer. There should be a fixed pattern with the SR# in the mail subject and the correct FROM email address provided to allow a customer reply. 2. Develop and deploy the mail response application Mail Response is typically designed as a standalone backend application that is running on an integration server. It can be developed by Java, .NET or any other programming languages. Mail Response is executed on defined time intervals and decides how quickly Mail Response needs to process the new mail in the Inbox. Any Queue Manager errors should be reported with detailed data and outputted into log files sent to administrators for troubleshooting and correction. Log files can be configured as daily archived logs or published at a web URL for easy download. Best Practices • Design the mail subject pattern identification mechanism to be flexible. It should be config- urable and easy to update without code change. • Filter out auto-reply (e.g. out of office mail or spam mails) responses. Five Practical Solutions for Integrating with Oracle CRM On Demand t 14
  • 15. SUMMARY The five solutions covered in this paper are flexible and lightweight technical solutions that best fit the integration architecture of Oracle CRM On Demand. While Web Services is a key to Oracle CRM On Demand integration, we can look at other Service Oriented Architecture (SOA) solutions (e.g. SOA middleware, BPEL, etc.) for other solutions, as long as the customer’s business needs are satisfied. Five Practical Solutions for Integrating with Oracle CRM On Demand t 15