SlideShare une entreprise Scribd logo
1  sur  8
Télécharger pour lire hors ligne
Middleware Replication: ISU
 Installation Facts into CRM
 Service Contract




Applies to:
SAP CRM and SAP IS-U. For more information, visit the Customer Relationship Management homepage.

Summary
This document is created to share the SAP CRM-ISU project experience. As per the standard SAP ISU -CRM
data model the installation facts are only maintained in the SAP IS U system and this data not gets replicated
to SAP CRM system. This document explains the development which is required to take care of this simple
requirement of replicating ISU Installation Facts data into the CRM S ervice Contract Custom field and can be
used as a reference for developing any fut ure similar requirements.
I would like to thank Mr. Rajesh Elumalai for his contribution in the ABAP area.

Author:      Suraj Jadhav – SAP CRM-ISU Consult ant
Company: Capgemini India P vt. Ltd.
Created on: 14th December 2010

Author Bio
Suraj Jadhav is SAP Sales and Distribution Certified, CRM Leasing Trained Functional Consultant with Over
7 years of total experience and over 5 years of consulting experience in SAP CRM, ISU and Sales and
Distribution with leading IT consulting organizations.
Currently working as a Senior SAP CRM -ISU Consultant, in Capgemini India P vt Ltd and providing
innovative solutions to global clients.




SAP COMMUNITY NETWORK                  SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                      1
Middleware Replication: ISU Installation Facts into CRM Service Contract




Table of Contents
Introduction............................................................................................................................................. 3
   Prerequisites ....................................................................................................................................... 3
ISU-CRM Replication Objects .................................................................................................................. 3
Middleware BAdI Development ................................................................................................................ 4
   ECRM_CRM_DOWNLOAD .................................................................................................................. 4
   ECRM_DOWNLOAD............................................................................................................................ 4
Test Results............................................................................................................................................ 5
   ISU Installation Facts ........................................................................................................................... 5
   ISU Cont ract ........................................................................................................................................ 5
   CRM Servic e Contract in Web UI .......................................................................................................... 6
Sample Code .......................................................................................................................................... 6
Relat ed Content ...................................................................................................................................... 7
Disclaimer and Liability Notice.................................................................................................................. 8




SAP COMMUNITY NETWORK                                      SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                                          2
Middleware Replication: ISU Installation Facts into CRM Service Contract




Introduction
This document is prepared for sharing a development experience of one of the CRM-ISU implementation
project. If there is any requirement of replicating any IS U installation facts data into the CRM Service
Cont ract Custom Fields, then this document will help SAP Consultants to speed up the development using
the sample code. This document will also be very useful in future for somet hing similar kind of replication
requirements.

Prerequisite s
       SAP ISU and CRM business process knowledge.
       Knowledge about SAP CRM middleware replic ation objects.
       Middleware settings bet ween the CRM and ISU systems
       CRM Middleware B Doc (Business document ) knowledge
       SAP ABAP programming knowledge.

ISU-CRM Replication Objects
The data replication between the IS U and CRM system happens through the middleware and there are some
objects for which data can be replicated int o the CRM from ISU system.
Following diagram explains the details about the object relationship between the ISU and CRM systems in
terms of middleware replication:

                     ISU                                                            CRM

                                                      M
                  Business Partner                                    Business Partner
                                                       I

                                                      D

                                                      D
                  BP Relationship                                      BP Relationship
                                                      L

                                                      E

                                                      W
                  Contract Account                                     Business Agreement
                                                      A

                                                       r
                   Utility Contract                   E
                                                                        Service Contract


                                                      R
                   Installation        PoD                                         CRM Installed Base
                                                      E
                                                                        PoD & Premise
                                                      P
                     Premise
                                                      L

                                                       I                           CRM Installed Base
                 Connection Object                    C               Connection Object
                                                      A

                                                      T
                 Business Contact                      I

                                                      O                     Business Activ ities
              Business Contact Notes                  N




SAP COMMUNITY NETWORK                        SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                            3
Middleware Replication: ISU Installation Facts into CRM Service Contract



The CRM Replication can be done by two met hods as below:
       Initial Download
       Delta Download and
       Request Download
So as per the standard middleware settings, there is no object in CRM to which ISU installation facts data
can be replicated.
For this SAP has provided us two BAdI’s (Business Add-In) which we can use to replicate such type of data.

Middleware BAdI Development
As per the SAP CRM Middleware setup, the ISU installation facts data replication into CRM is not a standard
practice. But if there are any business requirements to replicate some IS U data into CRM through
middleware then, this can be met using the middleware BAdI’s.
SAP has provided following two different middleware related BAdI’s, one in CRM system and other in ISU
system
       ECRM_CRM_DOWNLOAD (In ISU system)
       ECRM_DOWNLOAD (In CRM system)

ECRM_CRM_DOWNLOAD
SAP has provided this BAdI in IS U system for downloading any IS U Contract related data into CRM B Doc
container, which is not support ed in standard middleware objects.
So in our scenarios what we want is to send some custom facts data from ISU table into the CRM BDoc
container.
For this we have to develop the method “ecrm crm_download_fill_data_new”, to fetch the IS U facts data from
the table and then send it into the Bdoc container.
This BAdI then takes the ISU facts data from table “E TTIFN” and then sends this data to BDoc container.
Once this BAdI is developed and data is send to CRM container then the next BAdI will take care of the next
steps.

ECRM_DOWNLOAD
SAP has provided this BAdI in CRM system for downloading any ISU data from CRM BDoc container into
the CRM Service contract table structure, which is not supported in standard middleware objects.
For this we have to develop the method “ecrm_download_fill_data”, to fetch the data from the Bdoc container
and then send it to the relevant table-field.
This BAdI then downloads the ISU facts data whic h is sent by ISU BAdI and then replicated this to CRM
table ORDE RADM_i and field ZZ_ME TERTYPE
So as per our scenarios the installation facts data will then transferred into the custom field at the CRM
service cont ract item level.
Note:
The sample code for the above two BAdI’s are attached in the section “Sample Code”.




SAP COMMUNITY NETWORK                      SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                          4
Middleware Replication: ISU Installation Facts into CRM Service Contract




Test Results
Below are the screen shots of the test results for successfully replicating the installation facts data into CRM
Service Contract custom field at the item level:

ISU Installation Facts




ISU Contract




SAP COMMUNITY NETWORK                      SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                          5
Middleware Replication: ISU Installation Facts into CRM Service Contract




CRM Service Contract in Web UI




Sample Code
Below are the sample development codes related to the BAdI’s mentioned above:




Note: This approach can also be valid if you migrate this type of data usi ng the EMIGALL tool in SAP IS-U system.
Using this approach we can easily replicate the ISU field data into CRM field through middleware.




SAP COMMUNITY NETWORK                         SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                             6
Middleware Replication: ISU Installation Facts into CRM Service Contract




Related Content
SDN Middleware Forum
IS-Utilities SDN Forum
Customer Relations hip Management homepage




SAP COMMUNITY NETWORK               SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                   7
Middleware Replication: ISU Installation Facts into CRM Service Contract




Disclaimer and Liability Notice
This document may discuss sample coding or other information that does not include SAP offic ial interfaces and therefore is not
supported by SAP. Changes made based on this information are not supported and can be overwritten during an upgrade.
SAP w ill not be held liable for any damages caused by using or misusing the information, code or methods suggested in this document,
and anyone using these methods does so at his/her own risk.
SAP offers no guarantees and assumes no responsibility or liability of any type w ith respect to the content of this technical article or
code sample, including any liability resulting from incompatibility betw een the content within this document and the materials and
services offered by SAP. You agree that you will not hold, or seek to hold, SAP responsible or liable w ith respect to the content of this
document.




SAP COMMUNITY NETWORK                                SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com
© 2010 SAP AG                                                                                                                    8

Contenu connexe

Tendances

Presentation on resource related billing
Presentation on resource related billingPresentation on resource related billing
Presentation on resource related billingAmlan Sarkar
 
SAP Logistics - CS - Standard Process & Configuration document
SAP Logistics - CS - Standard Process & Configuration documentSAP Logistics - CS - Standard Process & Configuration document
SAP Logistics - CS - Standard Process & Configuration documentSubhrajyoti (Subhra) Bhattacharjee
 
Fiori app for po approval process sap mm
Fiori app for po approval process sap mmFiori app for po approval process sap mm
Fiori app for po approval process sap mmLokesh Modem
 
Middleware creation of site publication_subscription
Middleware creation of site publication_subscriptionMiddleware creation of site publication_subscription
Middleware creation of site publication_subscriptionRipunjay Rathaur
 
Listing and Exclusion Change History Functionality in SAP
Listing and Exclusion Change History Functionality in SAPListing and Exclusion Change History Functionality in SAP
Listing and Exclusion Change History Functionality in SAPVijay Pisipaty
 
How to create a transaction code for report painter reports
How to create a transaction code for report painter reportsHow to create a transaction code for report painter reports
How to create a transaction code for report painter reportsRajeev Kumar
 
FSCM - Treasury - Bank Communication Management.pptx
FSCM - Treasury - Bank Communication Management.pptxFSCM - Treasury - Bank Communication Management.pptx
FSCM - Treasury - Bank Communication Management.pptxDhaval Gala
 
Vistex Chargeback
Vistex ChargebackVistex Chargeback
Vistex ChargebackSAPYard
 
S4 HANA Business Partner Configuration@Ganesh Tarlana
S4 HANA Business Partner Configuration@Ganesh TarlanaS4 HANA Business Partner Configuration@Ganesh Tarlana
S4 HANA Business Partner Configuration@Ganesh TarlanaGanesh Tarlana
 
EDM Overview Of RTP Basics
EDM Overview Of RTP BasicsEDM Overview Of RTP Basics
EDM Overview Of RTP BasicsRakesh Dasgupta
 
Funds management configuration sap ag
Funds management configuration sap agFunds management configuration sap ag
Funds management configuration sap agLluckyy
 
Sap basis administration handbook
Sap basis administration handbookSap basis administration handbook
Sap basis administration handbookblackgoldboy
 
RFC destination step by step
RFC destination step by stepRFC destination step by step
RFC destination step by stepRipunjay Rathaur
 

Tendances (20)

Presentation on resource related billing
Presentation on resource related billingPresentation on resource related billing
Presentation on resource related billing
 
SAP Logistics - CS - Standard Process & Configuration document
SAP Logistics - CS - Standard Process & Configuration documentSAP Logistics - CS - Standard Process & Configuration document
SAP Logistics - CS - Standard Process & Configuration document
 
Fiori app for po approval process sap mm
Fiori app for po approval process sap mmFiori app for po approval process sap mm
Fiori app for po approval process sap mm
 
Middleware creation of site publication_subscription
Middleware creation of site publication_subscriptionMiddleware creation of site publication_subscription
Middleware creation of site publication_subscription
 
SAP IS-U Tables
SAP IS-U TablesSAP IS-U Tables
SAP IS-U Tables
 
SAP Adobe forms
SAP Adobe formsSAP Adobe forms
SAP Adobe forms
 
Listing and Exclusion Change History Functionality in SAP
Listing and Exclusion Change History Functionality in SAPListing and Exclusion Change History Functionality in SAP
Listing and Exclusion Change History Functionality in SAP
 
SAP ECC to S/4HANA Move
SAP ECC to S/4HANA MoveSAP ECC to S/4HANA Move
SAP ECC to S/4HANA Move
 
How to create a transaction code for report painter reports
How to create a transaction code for report painter reportsHow to create a transaction code for report painter reports
How to create a transaction code for report painter reports
 
FSCM - Treasury - Bank Communication Management.pptx
FSCM - Treasury - Bank Communication Management.pptxFSCM - Treasury - Bank Communication Management.pptx
FSCM - Treasury - Bank Communication Management.pptx
 
SAP Fiori ppt
SAP Fiori pptSAP Fiori ppt
SAP Fiori ppt
 
Vistex Chargeback
Vistex ChargebackVistex Chargeback
Vistex Chargeback
 
Chapter 02 sap client overview
Chapter 02 sap client overviewChapter 02 sap client overview
Chapter 02 sap client overview
 
S4 HANA Business Partner Configuration@Ganesh Tarlana
S4 HANA Business Partner Configuration@Ganesh TarlanaS4 HANA Business Partner Configuration@Ganesh Tarlana
S4 HANA Business Partner Configuration@Ganesh Tarlana
 
EDM Overview Of RTP Basics
EDM Overview Of RTP BasicsEDM Overview Of RTP Basics
EDM Overview Of RTP Basics
 
Funds management configuration sap ag
Funds management configuration sap agFunds management configuration sap ag
Funds management configuration sap ag
 
SAP CPI - DS
SAP CPI - DSSAP CPI - DS
SAP CPI - DS
 
Sap basis administration handbook
Sap basis administration handbookSap basis administration handbook
Sap basis administration handbook
 
RFC destination step by step
RFC destination step by stepRFC destination step by step
RFC destination step by step
 
Presentation introduction to sap
Presentation introduction to sapPresentation introduction to sap
Presentation introduction to sap
 

En vedette

Configuration steps to create Front Office Process for Technical Master Data ...
Configuration steps to create Front Office Process for Technical Master Data ...Configuration steps to create Front Office Process for Technical Master Data ...
Configuration steps to create Front Office Process for Technical Master Data ...jai_sinha
 
Lynch-BATech-2016
Lynch-BATech-2016Lynch-BATech-2016
Lynch-BATech-2016Louis Lynch
 
Oracle bi 10g_install_migration
Oracle bi 10g_install_migrationOracle bi 10g_install_migration
Oracle bi 10g_install_migrationMlx Le
 
Analytical Modelling and Design of a Mechatronic Cradle System
Analytical Modelling and Design of a Mechatronic Cradle SystemAnalytical Modelling and Design of a Mechatronic Cradle System
Analytical Modelling and Design of a Mechatronic Cradle SystemIJSRD
 
Java lead developer & architect
Java lead developer & architectJava lead developer & architect
Java lead developer & architectMark Long
 
Eloise Phillips Resume 3.01
Eloise Phillips Resume 3.01Eloise Phillips Resume 3.01
Eloise Phillips Resume 3.01Eloise Phillips
 
Jane Waterbury
Jane WaterburyJane Waterbury
Jane Waterburyjaneiva
 
Rahul_Bhatia_resume_new
Rahul_Bhatia_resume_newRahul_Bhatia_resume_new
Rahul_Bhatia_resume_newRahul Bhatia
 
Zoran Joković CV, ENG
Zoran Joković CV, ENGZoran Joković CV, ENG
Zoran Joković CV, ENGZoran Jokovic
 
Zoran Jokovic presentation
Zoran Jokovic presentationZoran Jokovic presentation
Zoran Jokovic presentationZoran Jokovic
 
Alex Shulga, Software Developer
Alex Shulga, Software DeveloperAlex Shulga, Software Developer
Alex Shulga, Software DeveloperAlexey Shulga
 

En vedette (18)

Configuration steps to create Front Office Process for Technical Master Data ...
Configuration steps to create Front Office Process for Technical Master Data ...Configuration steps to create Front Office Process for Technical Master Data ...
Configuration steps to create Front Office Process for Technical Master Data ...
 
Lynch-BATech-2016
Lynch-BATech-2016Lynch-BATech-2016
Lynch-BATech-2016
 
Oracle bi 10g_install_migration
Oracle bi 10g_install_migrationOracle bi 10g_install_migration
Oracle bi 10g_install_migration
 
Aida Panuco-Catano Resume
Aida Panuco-Catano ResumeAida Panuco-Catano Resume
Aida Panuco-Catano Resume
 
Kesha's resume
Kesha's resumeKesha's resume
Kesha's resume
 
Zafar Iqbal
Zafar IqbalZafar Iqbal
Zafar Iqbal
 
shivakumarswamy_Senior test engineer
shivakumarswamy_Senior test engineershivakumarswamy_Senior test engineer
shivakumarswamy_Senior test engineer
 
Resume415
Resume415Resume415
Resume415
 
Analytical Modelling and Design of a Mechatronic Cradle System
Analytical Modelling and Design of a Mechatronic Cradle SystemAnalytical Modelling and Design of a Mechatronic Cradle System
Analytical Modelling and Design of a Mechatronic Cradle System
 
Java lead developer & architect
Java lead developer & architectJava lead developer & architect
Java lead developer & architect
 
Eloise Phillips Resume 3.01
Eloise Phillips Resume 3.01Eloise Phillips Resume 3.01
Eloise Phillips Resume 3.01
 
Robin Fenstermaker Resume
Robin Fenstermaker ResumeRobin Fenstermaker Resume
Robin Fenstermaker Resume
 
Jane Waterbury
Jane WaterburyJane Waterbury
Jane Waterbury
 
Rahul_Bhatia_resume_new
Rahul_Bhatia_resume_newRahul_Bhatia_resume_new
Rahul_Bhatia_resume_new
 
Zoran Joković CV, ENG
Zoran Joković CV, ENGZoran Joković CV, ENG
Zoran Joković CV, ENG
 
Zoran Jokovic presentation
Zoran Jokovic presentationZoran Jokovic presentation
Zoran Jokovic presentation
 
Alex Shulga, Software Developer
Alex Shulga, Software DeveloperAlex Shulga, Software Developer
Alex Shulga, Software Developer
 
Networking resume
Networking resumeNetworking resume
Networking resume
 

Similaire à Isu

A treatise on SAP CRM information reporting
A treatise on SAP CRM information reportingA treatise on SAP CRM information reporting
A treatise on SAP CRM information reportingVijay Raj
 
Pdf Tax Form Services Whitepaper V1.1
Pdf Tax Form Services   Whitepaper V1.1Pdf Tax Form Services   Whitepaper V1.1
Pdf Tax Form Services Whitepaper V1.1amau2000
 
Dynamics Crm Reference Architecture Version 1.0
Dynamics Crm Reference Architecture Version 1.0Dynamics Crm Reference Architecture Version 1.0
Dynamics Crm Reference Architecture Version 1.0dekini
 
BPM As A Cornerstone Of A Post-IT Enterprise
BPM As A Cornerstone Of A Post-IT EnterpriseBPM As A Cornerstone Of A Post-IT Enterprise
BPM As A Cornerstone Of A Post-IT EnterpriseWolf Rivkin
 
Placement of BPM runtime components in an SOA environment
Placement of BPM runtime components in an SOA environmentPlacement of BPM runtime components in an SOA environment
Placement of BPM runtime components in an SOA environmentKim Clark
 
ZafarMirCRMAD
ZafarMirCRMADZafarMirCRMAD
ZafarMirCRMADZafar Mir
 
ZafarMirCRMAD
ZafarMirCRMADZafarMirCRMAD
ZafarMirCRMADZafar Mir
 
Pre-Integrated SSO for Software-as-a-Service & Enterprise Applications
Pre-Integrated SSO for Software-as-a-Service & Enterprise ApplicationsPre-Integrated SSO for Software-as-a-Service & Enterprise Applications
Pre-Integrated SSO for Software-as-a-Service & Enterprise Applicationswhite paper
 
Case Study - Appirio as the Serverless Enterprise
Case Study - Appirio as the Serverless EnterpriseCase Study - Appirio as the Serverless Enterprise
Case Study - Appirio as the Serverless EnterpriseAppirio
 
Richard_Minor_Business_Analyst_Resume_09052015
Richard_Minor_Business_Analyst_Resume_09052015Richard_Minor_Business_Analyst_Resume_09052015
Richard_Minor_Business_Analyst_Resume_09052015Richard Minor
 
AC200 Accounts Receivable And Payable Processing
AC200 Accounts Receivable And Payable ProcessingAC200 Accounts Receivable And Payable Processing
AC200 Accounts Receivable And Payable ProcessingMaria Perkins
 
Microsoft Analysis Services July 2010
Microsoft Analysis Services July 2010Microsoft Analysis Services July 2010
Microsoft Analysis Services July 2010Mark Ginnebaugh
 
Rts web crm one partners presentation EN-
Rts   web crm one partners presentation EN- Rts   web crm one partners presentation EN-
Rts web crm one partners presentation EN- Run Time Solutions
 
Run Time Solutions - Web CRM One 2.0 - SuperQuery
Run Time Solutions -  Web CRM One 2.0 - SuperQuery Run Time Solutions -  Web CRM One 2.0 - SuperQuery
Run Time Solutions - Web CRM One 2.0 - SuperQuery Run Time Solutions
 
Rts web crm one partners presentation in english- partner
Rts   web crm one partners presentation in english- partnerRts   web crm one partners presentation in english- partner
Rts web crm one partners presentation in english- partnerRun Time Solutions
 

Similaire à Isu (20)

A treatise on SAP CRM information reporting
A treatise on SAP CRM information reportingA treatise on SAP CRM information reporting
A treatise on SAP CRM information reporting
 
Pdf Tax Form Services Whitepaper V1.1
Pdf Tax Form Services   Whitepaper V1.1Pdf Tax Form Services   Whitepaper V1.1
Pdf Tax Form Services Whitepaper V1.1
 
Dynamics Crm Reference Architecture Version 1.0
Dynamics Crm Reference Architecture Version 1.0Dynamics Crm Reference Architecture Version 1.0
Dynamics Crm Reference Architecture Version 1.0
 
BPM As A Cornerstone Of A Post-IT Enterprise
BPM As A Cornerstone Of A Post-IT EnterpriseBPM As A Cornerstone Of A Post-IT Enterprise
BPM As A Cornerstone Of A Post-IT Enterprise
 
Ispcms.ppt
Ispcms.pptIspcms.ppt
Ispcms.ppt
 
Evento sap
Evento sapEvento sap
Evento sap
 
Placement of BPM runtime components in an SOA environment
Placement of BPM runtime components in an SOA environmentPlacement of BPM runtime components in an SOA environment
Placement of BPM runtime components in an SOA environment
 
L&T–CASE engineers faster production
L&T–CASE engineers faster productionL&T–CASE engineers faster production
L&T–CASE engineers faster production
 
ZafarMirCRMAD
ZafarMirCRMADZafarMirCRMAD
ZafarMirCRMAD
 
ZafarMirCRMAD
ZafarMirCRMADZafarMirCRMAD
ZafarMirCRMAD
 
Pre-Integrated SSO for Software-as-a-Service & Enterprise Applications
Pre-Integrated SSO for Software-as-a-Service & Enterprise ApplicationsPre-Integrated SSO for Software-as-a-Service & Enterprise Applications
Pre-Integrated SSO for Software-as-a-Service & Enterprise Applications
 
Case Study - Appirio as the Serverless Enterprise
Case Study - Appirio as the Serverless EnterpriseCase Study - Appirio as the Serverless Enterprise
Case Study - Appirio as the Serverless Enterprise
 
Richard_Minor_Business_Analyst_Resume_09052015
Richard_Minor_Business_Analyst_Resume_09052015Richard_Minor_Business_Analyst_Resume_09052015
Richard_Minor_Business_Analyst_Resume_09052015
 
AC200 Accounts Receivable And Payable Processing
AC200 Accounts Receivable And Payable ProcessingAC200 Accounts Receivable And Payable Processing
AC200 Accounts Receivable And Payable Processing
 
Microsoft Analysis Services July 2010
Microsoft Analysis Services July 2010Microsoft Analysis Services July 2010
Microsoft Analysis Services July 2010
 
Sap Hr
Sap HrSap Hr
Sap Hr
 
IBM Smart Cloud
IBM Smart CloudIBM Smart Cloud
IBM Smart Cloud
 
Rts web crm one partners presentation EN-
Rts   web crm one partners presentation EN- Rts   web crm one partners presentation EN-
Rts web crm one partners presentation EN-
 
Run Time Solutions - Web CRM One 2.0 - SuperQuery
Run Time Solutions -  Web CRM One 2.0 - SuperQuery Run Time Solutions -  Web CRM One 2.0 - SuperQuery
Run Time Solutions - Web CRM One 2.0 - SuperQuery
 
Rts web crm one partners presentation in english- partner
Rts   web crm one partners presentation in english- partnerRts   web crm one partners presentation in english- partner
Rts web crm one partners presentation in english- partner
 

Dernier

Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 

Dernier (20)

Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 

Isu

  • 1. Middleware Replication: ISU Installation Facts into CRM Service Contract Applies to: SAP CRM and SAP IS-U. For more information, visit the Customer Relationship Management homepage. Summary This document is created to share the SAP CRM-ISU project experience. As per the standard SAP ISU -CRM data model the installation facts are only maintained in the SAP IS U system and this data not gets replicated to SAP CRM system. This document explains the development which is required to take care of this simple requirement of replicating ISU Installation Facts data into the CRM S ervice Contract Custom field and can be used as a reference for developing any fut ure similar requirements. I would like to thank Mr. Rajesh Elumalai for his contribution in the ABAP area. Author: Suraj Jadhav – SAP CRM-ISU Consult ant Company: Capgemini India P vt. Ltd. Created on: 14th December 2010 Author Bio Suraj Jadhav is SAP Sales and Distribution Certified, CRM Leasing Trained Functional Consultant with Over 7 years of total experience and over 5 years of consulting experience in SAP CRM, ISU and Sales and Distribution with leading IT consulting organizations. Currently working as a Senior SAP CRM -ISU Consultant, in Capgemini India P vt Ltd and providing innovative solutions to global clients. SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 1
  • 2. Middleware Replication: ISU Installation Facts into CRM Service Contract Table of Contents Introduction............................................................................................................................................. 3 Prerequisites ....................................................................................................................................... 3 ISU-CRM Replication Objects .................................................................................................................. 3 Middleware BAdI Development ................................................................................................................ 4 ECRM_CRM_DOWNLOAD .................................................................................................................. 4 ECRM_DOWNLOAD............................................................................................................................ 4 Test Results............................................................................................................................................ 5 ISU Installation Facts ........................................................................................................................... 5 ISU Cont ract ........................................................................................................................................ 5 CRM Servic e Contract in Web UI .......................................................................................................... 6 Sample Code .......................................................................................................................................... 6 Relat ed Content ...................................................................................................................................... 7 Disclaimer and Liability Notice.................................................................................................................. 8 SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 2
  • 3. Middleware Replication: ISU Installation Facts into CRM Service Contract Introduction This document is prepared for sharing a development experience of one of the CRM-ISU implementation project. If there is any requirement of replicating any IS U installation facts data into the CRM Service Cont ract Custom Fields, then this document will help SAP Consultants to speed up the development using the sample code. This document will also be very useful in future for somet hing similar kind of replication requirements. Prerequisite s  SAP ISU and CRM business process knowledge.  Knowledge about SAP CRM middleware replic ation objects.  Middleware settings bet ween the CRM and ISU systems  CRM Middleware B Doc (Business document ) knowledge  SAP ABAP programming knowledge. ISU-CRM Replication Objects The data replication between the IS U and CRM system happens through the middleware and there are some objects for which data can be replicated int o the CRM from ISU system. Following diagram explains the details about the object relationship between the ISU and CRM systems in terms of middleware replication: ISU CRM M Business Partner Business Partner I D D BP Relationship BP Relationship L E W Contract Account Business Agreement A r Utility Contract E Service Contract R Installation PoD CRM Installed Base E PoD & Premise P Premise L I CRM Installed Base Connection Object C Connection Object A T Business Contact I O Business Activ ities Business Contact Notes N SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 3
  • 4. Middleware Replication: ISU Installation Facts into CRM Service Contract The CRM Replication can be done by two met hods as below:  Initial Download  Delta Download and  Request Download So as per the standard middleware settings, there is no object in CRM to which ISU installation facts data can be replicated. For this SAP has provided us two BAdI’s (Business Add-In) which we can use to replicate such type of data. Middleware BAdI Development As per the SAP CRM Middleware setup, the ISU installation facts data replication into CRM is not a standard practice. But if there are any business requirements to replicate some IS U data into CRM through middleware then, this can be met using the middleware BAdI’s. SAP has provided following two different middleware related BAdI’s, one in CRM system and other in ISU system  ECRM_CRM_DOWNLOAD (In ISU system)  ECRM_DOWNLOAD (In CRM system) ECRM_CRM_DOWNLOAD SAP has provided this BAdI in IS U system for downloading any IS U Contract related data into CRM B Doc container, which is not support ed in standard middleware objects. So in our scenarios what we want is to send some custom facts data from ISU table into the CRM BDoc container. For this we have to develop the method “ecrm crm_download_fill_data_new”, to fetch the IS U facts data from the table and then send it into the Bdoc container. This BAdI then takes the ISU facts data from table “E TTIFN” and then sends this data to BDoc container. Once this BAdI is developed and data is send to CRM container then the next BAdI will take care of the next steps. ECRM_DOWNLOAD SAP has provided this BAdI in CRM system for downloading any ISU data from CRM BDoc container into the CRM Service contract table structure, which is not supported in standard middleware objects. For this we have to develop the method “ecrm_download_fill_data”, to fetch the data from the Bdoc container and then send it to the relevant table-field. This BAdI then downloads the ISU facts data whic h is sent by ISU BAdI and then replicated this to CRM table ORDE RADM_i and field ZZ_ME TERTYPE So as per our scenarios the installation facts data will then transferred into the custom field at the CRM service cont ract item level. Note: The sample code for the above two BAdI’s are attached in the section “Sample Code”. SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 4
  • 5. Middleware Replication: ISU Installation Facts into CRM Service Contract Test Results Below are the screen shots of the test results for successfully replicating the installation facts data into CRM Service Contract custom field at the item level: ISU Installation Facts ISU Contract SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 5
  • 6. Middleware Replication: ISU Installation Facts into CRM Service Contract CRM Service Contract in Web UI Sample Code Below are the sample development codes related to the BAdI’s mentioned above: Note: This approach can also be valid if you migrate this type of data usi ng the EMIGALL tool in SAP IS-U system. Using this approach we can easily replicate the ISU field data into CRM field through middleware. SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 6
  • 7. Middleware Replication: ISU Installation Facts into CRM Service Contract Related Content SDN Middleware Forum IS-Utilities SDN Forum Customer Relations hip Management homepage SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 7
  • 8. Middleware Replication: ISU Installation Facts into CRM Service Contract Disclaimer and Liability Notice This document may discuss sample coding or other information that does not include SAP offic ial interfaces and therefore is not supported by SAP. Changes made based on this information are not supported and can be overwritten during an upgrade. SAP w ill not be held liable for any damages caused by using or misusing the information, code or methods suggested in this document, and anyone using these methods does so at his/her own risk. SAP offers no guarantees and assumes no responsibility or liability of any type w ith respect to the content of this technical article or code sample, including any liability resulting from incompatibility betw een the content within this document and the materials and services offered by SAP. You agree that you will not hold, or seek to hold, SAP responsible or liable w ith respect to the content of this document. SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BOC - boc.sap.com | UAC - uac.sap.com © 2010 SAP AG 8