SlideShare ist ein Scribd-Unternehmen logo
1 von 17
Downloaden Sie, um offline zu lesen
CustomCustom DevelopmentDevelopment of Enterprise Servicesof Enterprise Services --
WhatWhat doesdoes an Softwarean Software ArchitectArchitect needneed toto knowknow??
Tobias Trapp
© Tobias Trapp 2010 2
Table ofTable of ContentContent
Implementation Details
Standardization of Web Services
Summary
Component Architecture
© Tobias Trapp 2010 3
WhichWhich SAP technologySAP technology isis thethe mostmost appropriateappropriate forfor specificspecific purposespurposes??
lightweight interfaces: REST are very useful for integration of output and
document management systems
application integration: A2A services outside-in using PI
commerce transactions between businesses : B2B services generated
outside-in, propably using PI
integration using arbitrary clients: A2X services generated outside in
exposing BOL classes on the fly: CRM Web Service framework
mobile apps: Sybase CRM Mobile Sales and Mobility for SAP
coming soon: project Gateway
exposing function modules on thy fly: inside out generation
WelcomeWelcome to ABAP Web Serviceto ABAP Web Service JungleJungle!!
© Tobias Trapp 2010 4
„„InsideInside OutOut““ isis aa DeadDead End StreetEnd Street
„Inside Out“ means poor man‘s SOA
no standardized data types
we can‘t control mandatory and
non-mandatory elements
no standardized naming conventions
no standardized communication patterns
no patterns for asynchronous scenarios
no standardized change strategies: first one wins vs. last one wins
complicated & database–like because of TABLES parameters
important frameworks are missing
- idempotency
- forward error handling
- no enhancement concept for customers
© Tobias Trapp 2010 5
Enterprise ServicesEnterprise Services
Build your SOA on standards and best practices
use global data types according UN/CEFACT standards
develop enterprise „outside in“: generate ABAP proxies from a WSDL (file, URL,
ESR) using transaction SPROXY / SE80
follow ESR modelling guidelines and create ESR certified content
from SAP Guidelines for Best-Built Applications that Integrate with
SAP Business Suite:
© Tobias Trapp 2010 6
NearlyNearly everythingeverything youyou needneed toto knowknow isis writtenwritten downdown
There are lots of resources on SCN and SAP Press
many tutorials about ESR on SDN
SOA 300 training
everything about modelling & implementation is written down
in SAP Press Book „Developing Enterprise Services for SAP“
„How To… Develop, Monitor and Debug WS Consumer
and Provider“
Enterprise SOA Development Handbook 1.1
chapter about SOA & loose coupling of
applications in SAP Guidelines for
Best-Built Applications that Integrate
with SAP Business Suite
© Tobias Trapp 2010 7
Enterprise ServicesEnterprise Services havehave wellwell--defineddefined SemanticsSemantics
Use naming conventions and communication patterns
naming convention is: <business object view> <action> <message type>
Sales Order Create Request
actions are Create, Read, Update (first one wins), Change (last one wins),
Cancel and Check: Purchase Order Cancel Check Query Request
there are well-defined semantics described below:
© Tobias Trapp 2010 8
Table ofTable of ContentContent
Implementation Details
Standardization of Web Services
Summary
Component Architecture
© Tobias Trapp 2010 9
SOASOA byby „„ControlledControlled EvolutionEvolution““
SOA by Design vs. SOA by Evolution
SAP‘s SOMAID methodology is heavy weight – you need a list of all processes
whether they are IT-based or not
whenever you can use Enterprise Services of SAP Business Suite - you‘ll find them
on ES work place http://www.sdn.sap.com/irj/bpx/esworkplace
if necessary enhance SAP standard services as described in
Enterprise Service Enhancement Guide
create custom Enterprise Services using SAP‘s
modelling approach - construct them from business
objects of your ABAP app.
© Tobias Trapp 2010 10
ABAPABAP AppsApps, ESR, ESR SWCVsSWCVs and XMLand XML NamespacesNamespaces
How to structure ESR development
SWVCs in ESR correspond to ABAP SCs
an ABAP application corresponds to an repository namespace
define data types for reuse in separate namespaces
create repository namespace for each application containing business objects
this leads to a hierarchy of repository namespaces
http://tempuri.org/xi/flightmanagement/CRM
http://tempuri.org/xi/flightmanagement/CRM/Global
http://tempuri.org/xi/flightmanagement/BP
http://tempuri.org/xi/flightmanagement/BP/Global
http://tempuri.org/xi/flightmanagement/Global
hint: avoid special characters in XML names because package names of generated
classes consumers tend to get complicated – this is a problem of many non-SAP
frameworks
© Tobias Trapp 2010 11
ABAPABAP ComponentComponent StructureStructure
How to structure server proxies according to your ABAP component hierarchy?
in NW 7.01 there can be only one proxy element per system (and ABAP
namespace).
ESR dependencies lead to dependencies in ABAP: proxy elements will be reused -
so be careful if the proxies are in different ABAP components:
http://tempuri.org/xi/flightmanagement/CRM
http://tempuri.org/xi/flightmanagement/CRM/Global
http://tempuri.org/xi/flightmanagement/BP
http://tempuri.org/xi/flightmanagement/BP/Global
http://tempuri.org/xi/flightmanagement/Global
create packages that contain only ABAP proxies
}
}
CUSTBP
CUSTCRM
SCs in an
ABAP system
© Tobias Trapp 2010 12
Table ofTable of ContentContent
Implementation Details
Standardization of Web Services
Summary
Component Architecture
© Tobias Trapp 2010 13
BestBest PracticesPractices forfor Creating Enterprise ServicesCreating Enterprise Services
Common mistakes and how to avoid them
specify error handling: system errors, wrong input parameters, missing
authorities…
consider compensation scenarios: what happens if a web service call fails?
use forward error handling in asynchronous scenarios
consider reviews for ESR development – developers tend to break every rule
because they can do anything in XML
keep code in generated classes small – delegate to classes
containing business logic for each method
use naming conventions for data types, parameters,
message types and message data types in generated classes
develop in a test driven way: check ABAP classes using unit tests,
test Enterprise Services using ABAP test tool resp. eCATT
study best practices in SAP guidelines esp. the SAP Press book
don‘t follow guidelines for SAP Business Suite blindly: asually an ES doesn‘t
need to be XI 3.0 conform and contain more than 1 operation.
© Tobias Trapp 2010 14
AbsolutelyAbsolutely necessarynecessary toto knowknow:: ExtendedExtended XML HandlingXML Handling
Empty values vs. Null values
NULL values have different semantics compared to initial values:
- NULL values in an update service mean that they should not be changed
- NULL values in a query mean that a data element is not relevant in a search
Initial values can be coded as empty XML elements
NULL values can be coded using xsi:nil and missing elements
In the constructor of a server proxy switch extended XML handling on:
set_extended_xml_handling( i_switch_on = abap_true ).
Then you get the information about every data element (omitted, xsi:nil, initial) in
an structure PRXCTRLTAB
© Tobias Trapp 2010 15
AA hiddenhidden gemgem:: GenericGeneric Code List Provider FrameworkCode List Provider Framework
Codes can be defined an ABAP backend system
define code lists as XML schema enumeration types
only if the values are well-defined & do not change
In most cases code lists are defined in ABAP backend in
customizing tables
you can bind domain values, (text) tables to server
proxy data elements and read them using the
generic Enterprise Service QueryCodeList
the framework is extensible – think of time depended
customizing, subsets of customizing sets…
© Tobias Trapp 2010 16
Table ofTable of ContentContent
Implementation Details
Standardization of Web Services
Summary
Component Architecture
© Tobias Trapp 2010 17
ExplainExplain toto developersdevelopers thethe conceptconcept of Enterprise Servicesof Enterprise Services
As software architect now you are well prepared for a SOA project, but don‘t
forget:
keep yourself informed - ABAP frameworks are rapidly evolved by SAP
learn about eventing, service groups, forward error handling…
What do developers of Enterprise Services need to know?
a prototype implementation will help developers to understand the concepts
teach developers the transactional behaviour esp. in update/change services: SET
UPDATE TASK LOCAL, cl_soap_commit_rollback and that enterprise
services are stateless – no DB cursor!
don‘t forget to test the enterprise services with user with different authorization
profiles in the ABAP backend.

Weitere ähnliche Inhalte

Was ist angesagt?

Erp sap r3 overview introduction
Erp  sap r3 overview introductionErp  sap r3 overview introduction
Erp sap r3 overview introductionBunty Jain
 
SAP Systems Integration by SAP PI (XI)
SAP Systems Integration by SAP PI (XI)SAP Systems Integration by SAP PI (XI)
SAP Systems Integration by SAP PI (XI)alpercelk
 
SAP INTRO
SAP INTROSAP INTRO
SAP INTRODr.Ravi
 
SAP ERP IMPLEMENTATION AND Sap migration
SAP ERP IMPLEMENTATION AND Sap migrationSAP ERP IMPLEMENTATION AND Sap migration
SAP ERP IMPLEMENTATION AND Sap migrationArig
 
Sap abap ppt
Sap abap pptSap abap ppt
Sap abap pptvonline
 
Sap Process Integration
Sap Process Integration Sap Process Integration
Sap Process Integration Tauhidul Islam
 
My saperp technology facts -22_11_2011
My saperp   technology facts -22_11_2011My saperp   technology facts -22_11_2011
My saperp technology facts -22_11_2011Didem Gundogdu
 
SAP An Introduction
SAP An IntroductionSAP An Introduction
SAP An Introductionsh_neha252
 
sap nw bw7.3 on sap hana ramp up project approach (2)
sap nw bw7.3 on sap hana ramp up project approach (2)sap nw bw7.3 on sap hana ramp up project approach (2)
sap nw bw7.3 on sap hana ramp up project approach (2)Prof Dr Mehmed ERDAS
 
What is sap an introduction - maxsoftsolutions.com
What is sap   an introduction - maxsoftsolutions.comWhat is sap   an introduction - maxsoftsolutions.com
What is sap an introduction - maxsoftsolutions.commaxsoftsolutions
 
Lecture01 abap on line
Lecture01 abap on lineLecture01 abap on line
Lecture01 abap on lineMilind Patil
 

Was ist angesagt? (18)

Erp sap r3 overview introduction
Erp  sap r3 overview introductionErp  sap r3 overview introduction
Erp sap r3 overview introduction
 
Basics of sap
Basics of  sapBasics of  sap
Basics of sap
 
SAP Systems Integration by SAP PI (XI)
SAP Systems Integration by SAP PI (XI)SAP Systems Integration by SAP PI (XI)
SAP Systems Integration by SAP PI (XI)
 
SAP INTRO
SAP INTROSAP INTRO
SAP INTRO
 
Introduction to sap
Introduction to sapIntroduction to sap
Introduction to sap
 
SAP ERP IMPLEMENTATION AND Sap migration
SAP ERP IMPLEMENTATION AND Sap migrationSAP ERP IMPLEMENTATION AND Sap migration
SAP ERP IMPLEMENTATION AND Sap migration
 
SAP PI
SAP PISAP PI
SAP PI
 
Sap abap ppt
Sap abap pptSap abap ppt
Sap abap ppt
 
Sap Process Integration
Sap Process Integration Sap Process Integration
Sap Process Integration
 
My saperp technology facts -22_11_2011
My saperp   technology facts -22_11_2011My saperp   technology facts -22_11_2011
My saperp technology facts -22_11_2011
 
SAP Basics and Overview
SAP Basics and OverviewSAP Basics and Overview
SAP Basics and Overview
 
SAP An Introduction
SAP An IntroductionSAP An Introduction
SAP An Introduction
 
SAP PI and SOA Overview
SAP PI and SOA OverviewSAP PI and SOA Overview
SAP PI and SOA Overview
 
sap nw bw7.3 on sap hana ramp up project approach (2)
sap nw bw7.3 on sap hana ramp up project approach (2)sap nw bw7.3 on sap hana ramp up project approach (2)
sap nw bw7.3 on sap hana ramp up project approach (2)
 
CRM Service
CRM ServiceCRM Service
CRM Service
 
SAP BASIS Training in Chennai
SAP BASIS Training  in ChennaiSAP BASIS Training  in Chennai
SAP BASIS Training in Chennai
 
What is sap an introduction - maxsoftsolutions.com
What is sap   an introduction - maxsoftsolutions.comWhat is sap   an introduction - maxsoftsolutions.com
What is sap an introduction - maxsoftsolutions.com
 
Lecture01 abap on line
Lecture01 abap on lineLecture01 abap on line
Lecture01 abap on line
 

Ähnlich wie What an Software Architect Needs to Know About Custom Development of Enterprise Services

MuleSoft London Community October 2017 - Hybrid and SAP Integration
MuleSoft London Community October 2017 - Hybrid and SAP IntegrationMuleSoft London Community October 2017 - Hybrid and SAP Integration
MuleSoft London Community October 2017 - Hybrid and SAP IntegrationPace Integration
 
SAP performance testing & engineering courseware v01
SAP performance testing & engineering courseware v01SAP performance testing & engineering courseware v01
SAP performance testing & engineering courseware v01Argos
 
OSA03 Pourquoi choisir IBM pour vos projets BPM ?
OSA03 Pourquoi choisir IBM pour vos projets BPM ?OSA03 Pourquoi choisir IBM pour vos projets BPM ?
OSA03 Pourquoi choisir IBM pour vos projets BPM ?Nicolas Desachy
 
Composite Apps using SCA (Service Component Architecture)
Composite Apps using SCA (Service Component Architecture)Composite Apps using SCA (Service Component Architecture)
Composite Apps using SCA (Service Component Architecture)Shameer Thaha Koya
 
Pega systems vs siebel CRM capabilities - A first look
Pega systems vs siebel CRM capabilities - A first lookPega systems vs siebel CRM capabilities - A first look
Pega systems vs siebel CRM capabilities - A first lookAnjan Sarma
 
Practical guide to building public APIs
Practical guide to building public APIsPractical guide to building public APIs
Practical guide to building public APIsReda Hmeid MBCS
 
Sap Interview Questions - Part 1
Sap Interview Questions - Part 1Sap Interview Questions - Part 1
Sap Interview Questions - Part 1ReKruiTIn.com
 
Biztalk Server 2006
Biztalk Server 2006Biztalk Server 2006
Biztalk Server 2006ipaciti
 
Integration with SAP using Mule ESB
Integration with SAP using Mule ESBIntegration with SAP using Mule ESB
Integration with SAP using Mule ESBSanjeet Pandey
 
Software as Service
Software as ServiceSoftware as Service
Software as Serviceabhigad
 
Atos Ibm Sap Event 22 06 2012v2 Shekhar
Atos Ibm Sap Event 22 06 2012v2 ShekharAtos Ibm Sap Event 22 06 2012v2 Shekhar
Atos Ibm Sap Event 22 06 2012v2 ShekharShekhar Bhartiya
 
Technology Overview
Technology OverviewTechnology Overview
Technology OverviewLiran Zelkha
 
Integrating SAP and Low-Code Plaforms
Integrating SAP and Low-Code PlaformsIntegrating SAP and Low-Code Plaforms
Integrating SAP and Low-Code PlaformsWarren Eiserman
 
Introduction to OData and SAP NetWeaver Gateway.pptx
Introduction to OData and SAP NetWeaver Gateway.pptxIntroduction to OData and SAP NetWeaver Gateway.pptx
Introduction to OData and SAP NetWeaver Gateway.pptxRichard314186
 
Introduction to SAP Gateway and OData
Introduction to SAP Gateway and ODataIntroduction to SAP Gateway and OData
Introduction to SAP Gateway and ODataChris Whealy
 
DRM Webinar Series, PART 3: Will DRM Integrate With Our Applications?
DRM Webinar Series, PART 3: Will DRM Integrate With Our Applications?DRM Webinar Series, PART 3: Will DRM Integrate With Our Applications?
DRM Webinar Series, PART 3: Will DRM Integrate With Our Applications?US-Analytics
 
REST - What's It All About? (SAP TechEd 2012, CD110)
REST - What's It All About? (SAP TechEd 2012, CD110)REST - What's It All About? (SAP TechEd 2012, CD110)
REST - What's It All About? (SAP TechEd 2012, CD110)Sascha Wenninger
 

Ähnlich wie What an Software Architect Needs to Know About Custom Development of Enterprise Services (20)

MuleSoft London Community October 2017 - Hybrid and SAP Integration
MuleSoft London Community October 2017 - Hybrid and SAP IntegrationMuleSoft London Community October 2017 - Hybrid and SAP Integration
MuleSoft London Community October 2017 - Hybrid and SAP Integration
 
SAP performance testing & engineering courseware v01
SAP performance testing & engineering courseware v01SAP performance testing & engineering courseware v01
SAP performance testing & engineering courseware v01
 
SAP NetWeaver.ppt
SAP NetWeaver.pptSAP NetWeaver.ppt
SAP NetWeaver.ppt
 
Ppt00000
Ppt00000Ppt00000
Ppt00000
 
OSA03 Pourquoi choisir IBM pour vos projets BPM ?
OSA03 Pourquoi choisir IBM pour vos projets BPM ?OSA03 Pourquoi choisir IBM pour vos projets BPM ?
OSA03 Pourquoi choisir IBM pour vos projets BPM ?
 
Composite Apps using SCA (Service Component Architecture)
Composite Apps using SCA (Service Component Architecture)Composite Apps using SCA (Service Component Architecture)
Composite Apps using SCA (Service Component Architecture)
 
Pega systems vs siebel CRM capabilities - A first look
Pega systems vs siebel CRM capabilities - A first lookPega systems vs siebel CRM capabilities - A first look
Pega systems vs siebel CRM capabilities - A first look
 
Practical guide to building public APIs
Practical guide to building public APIsPractical guide to building public APIs
Practical guide to building public APIs
 
Sap Interview Questions - Part 1
Sap Interview Questions - Part 1Sap Interview Questions - Part 1
Sap Interview Questions - Part 1
 
Biztalk Server 2006
Biztalk Server 2006Biztalk Server 2006
Biztalk Server 2006
 
Integration with SAP using Mule ESB
Integration with SAP using Mule ESBIntegration with SAP using Mule ESB
Integration with SAP using Mule ESB
 
Software as Service
Software as ServiceSoftware as Service
Software as Service
 
Atos Ibm Sap Event 22 06 2012v2 Shekhar
Atos Ibm Sap Event 22 06 2012v2 ShekharAtos Ibm Sap Event 22 06 2012v2 Shekhar
Atos Ibm Sap Event 22 06 2012v2 Shekhar
 
Technology Overview
Technology OverviewTechnology Overview
Technology Overview
 
Integrating SAP and Low-Code Plaforms
Integrating SAP and Low-Code PlaformsIntegrating SAP and Low-Code Plaforms
Integrating SAP and Low-Code Plaforms
 
Introduction to OData and SAP NetWeaver Gateway.pptx
Introduction to OData and SAP NetWeaver Gateway.pptxIntroduction to OData and SAP NetWeaver Gateway.pptx
Introduction to OData and SAP NetWeaver Gateway.pptx
 
Introduction to SAP Gateway and OData
Introduction to SAP Gateway and ODataIntroduction to SAP Gateway and OData
Introduction to SAP Gateway and OData
 
DRM Webinar Series, PART 3: Will DRM Integrate With Our Applications?
DRM Webinar Series, PART 3: Will DRM Integrate With Our Applications?DRM Webinar Series, PART 3: Will DRM Integrate With Our Applications?
DRM Webinar Series, PART 3: Will DRM Integrate With Our Applications?
 
REST - What's It All About? (SAP TechEd 2012, CD110)
REST - What's It All About? (SAP TechEd 2012, CD110)REST - What's It All About? (SAP TechEd 2012, CD110)
REST - What's It All About? (SAP TechEd 2012, CD110)
 
Api enablement-mainframe
Api enablement-mainframeApi enablement-mainframe
Api enablement-mainframe
 

Mehr von Tobias Trapp

Is your ABAP Code Ready for the Cloud?
Is your ABAP Code Ready for the Cloud?Is your ABAP Code Ready for the Cloud?
Is your ABAP Code Ready for the Cloud?Tobias Trapp
 
ABAP State of the Art
ABAP State of the ArtABAP State of the Art
ABAP State of the ArtTobias Trapp
 
Bitter sweet lessons - out way to Fiori
Bitter sweet lessons - out way to FioriBitter sweet lessons - out way to Fiori
Bitter sweet lessons - out way to FioriTobias Trapp
 
Analytics & Fiori with the Analysis Path Framework
Analytics & Fiori with the Analysis Path FrameworkAnalytics & Fiori with the Analysis Path Framework
Analytics & Fiori with the Analysis Path FrameworkTobias Trapp
 
Logical Abduction and an Application on Business Rules Management
Logical Abduction and an Application on Business Rules ManagementLogical Abduction and an Application on Business Rules Management
Logical Abduction and an Application on Business Rules ManagementTobias Trapp
 
Coolcats don't Use Customzing
Coolcats don't Use CustomzingCoolcats don't Use Customzing
Coolcats don't Use CustomzingTobias Trapp
 
BRFplus in der Prozessautomatisierung
BRFplus in der ProzessautomatisierungBRFplus in der Prozessautomatisierung
BRFplus in der ProzessautomatisierungTobias Trapp
 
Lecture about SAP HANA and Enterprise Comupting at University of Halle
Lecture about SAP HANA and Enterprise Comupting at University of HalleLecture about SAP HANA and Enterprise Comupting at University of Halle
Lecture about SAP HANA and Enterprise Comupting at University of HalleTobias Trapp
 
Abap package concept
Abap package conceptAbap package concept
Abap package conceptTobias Trapp
 
SAP Test automation - fully automatic test of complex business processes incl...
SAP Test automation - fully automatic test of complex business processes incl...SAP Test automation - fully automatic test of complex business processes incl...
SAP Test automation - fully automatic test of complex business processes incl...Tobias Trapp
 

Mehr von Tobias Trapp (11)

Is your ABAP Code Ready for the Cloud?
Is your ABAP Code Ready for the Cloud?Is your ABAP Code Ready for the Cloud?
Is your ABAP Code Ready for the Cloud?
 
ABAP State of the Art
ABAP State of the ArtABAP State of the Art
ABAP State of the Art
 
Bitter sweet lessons - out way to Fiori
Bitter sweet lessons - out way to FioriBitter sweet lessons - out way to Fiori
Bitter sweet lessons - out way to Fiori
 
Analytics & Fiori with the Analysis Path Framework
Analytics & Fiori with the Analysis Path FrameworkAnalytics & Fiori with the Analysis Path Framework
Analytics & Fiori with the Analysis Path Framework
 
Logical Abduction and an Application on Business Rules Management
Logical Abduction and an Application on Business Rules ManagementLogical Abduction and an Application on Business Rules Management
Logical Abduction and an Application on Business Rules Management
 
Coolcats don't Use Customzing
Coolcats don't Use CustomzingCoolcats don't Use Customzing
Coolcats don't Use Customzing
 
BRFplus in der Prozessautomatisierung
BRFplus in der ProzessautomatisierungBRFplus in der Prozessautomatisierung
BRFplus in der Prozessautomatisierung
 
Lecture about SAP HANA and Enterprise Comupting at University of Halle
Lecture about SAP HANA and Enterprise Comupting at University of HalleLecture about SAP HANA and Enterprise Comupting at University of Halle
Lecture about SAP HANA and Enterprise Comupting at University of Halle
 
SAP Reuse Tools
SAP Reuse Tools SAP Reuse Tools
SAP Reuse Tools
 
Abap package concept
Abap package conceptAbap package concept
Abap package concept
 
SAP Test automation - fully automatic test of complex business processes incl...
SAP Test automation - fully automatic test of complex business processes incl...SAP Test automation - fully automatic test of complex business processes incl...
SAP Test automation - fully automatic test of complex business processes incl...
 

Kürzlich hochgeladen

DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
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
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
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
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
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
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 

Kürzlich hochgeladen (20)

DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
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
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
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
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 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
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 

What an Software Architect Needs to Know About Custom Development of Enterprise Services

  • 1. CustomCustom DevelopmentDevelopment of Enterprise Servicesof Enterprise Services -- WhatWhat doesdoes an Softwarean Software ArchitectArchitect needneed toto knowknow?? Tobias Trapp
  • 2. © Tobias Trapp 2010 2 Table ofTable of ContentContent Implementation Details Standardization of Web Services Summary Component Architecture
  • 3. © Tobias Trapp 2010 3 WhichWhich SAP technologySAP technology isis thethe mostmost appropriateappropriate forfor specificspecific purposespurposes?? lightweight interfaces: REST are very useful for integration of output and document management systems application integration: A2A services outside-in using PI commerce transactions between businesses : B2B services generated outside-in, propably using PI integration using arbitrary clients: A2X services generated outside in exposing BOL classes on the fly: CRM Web Service framework mobile apps: Sybase CRM Mobile Sales and Mobility for SAP coming soon: project Gateway exposing function modules on thy fly: inside out generation WelcomeWelcome to ABAP Web Serviceto ABAP Web Service JungleJungle!!
  • 4. © Tobias Trapp 2010 4 „„InsideInside OutOut““ isis aa DeadDead End StreetEnd Street „Inside Out“ means poor man‘s SOA no standardized data types we can‘t control mandatory and non-mandatory elements no standardized naming conventions no standardized communication patterns no patterns for asynchronous scenarios no standardized change strategies: first one wins vs. last one wins complicated & database–like because of TABLES parameters important frameworks are missing - idempotency - forward error handling - no enhancement concept for customers
  • 5. © Tobias Trapp 2010 5 Enterprise ServicesEnterprise Services Build your SOA on standards and best practices use global data types according UN/CEFACT standards develop enterprise „outside in“: generate ABAP proxies from a WSDL (file, URL, ESR) using transaction SPROXY / SE80 follow ESR modelling guidelines and create ESR certified content from SAP Guidelines for Best-Built Applications that Integrate with SAP Business Suite:
  • 6. © Tobias Trapp 2010 6 NearlyNearly everythingeverything youyou needneed toto knowknow isis writtenwritten downdown There are lots of resources on SCN and SAP Press many tutorials about ESR on SDN SOA 300 training everything about modelling & implementation is written down in SAP Press Book „Developing Enterprise Services for SAP“ „How To… Develop, Monitor and Debug WS Consumer and Provider“ Enterprise SOA Development Handbook 1.1 chapter about SOA & loose coupling of applications in SAP Guidelines for Best-Built Applications that Integrate with SAP Business Suite
  • 7. © Tobias Trapp 2010 7 Enterprise ServicesEnterprise Services havehave wellwell--defineddefined SemanticsSemantics Use naming conventions and communication patterns naming convention is: <business object view> <action> <message type> Sales Order Create Request actions are Create, Read, Update (first one wins), Change (last one wins), Cancel and Check: Purchase Order Cancel Check Query Request there are well-defined semantics described below:
  • 8. © Tobias Trapp 2010 8 Table ofTable of ContentContent Implementation Details Standardization of Web Services Summary Component Architecture
  • 9. © Tobias Trapp 2010 9 SOASOA byby „„ControlledControlled EvolutionEvolution““ SOA by Design vs. SOA by Evolution SAP‘s SOMAID methodology is heavy weight – you need a list of all processes whether they are IT-based or not whenever you can use Enterprise Services of SAP Business Suite - you‘ll find them on ES work place http://www.sdn.sap.com/irj/bpx/esworkplace if necessary enhance SAP standard services as described in Enterprise Service Enhancement Guide create custom Enterprise Services using SAP‘s modelling approach - construct them from business objects of your ABAP app.
  • 10. © Tobias Trapp 2010 10 ABAPABAP AppsApps, ESR, ESR SWCVsSWCVs and XMLand XML NamespacesNamespaces How to structure ESR development SWVCs in ESR correspond to ABAP SCs an ABAP application corresponds to an repository namespace define data types for reuse in separate namespaces create repository namespace for each application containing business objects this leads to a hierarchy of repository namespaces http://tempuri.org/xi/flightmanagement/CRM http://tempuri.org/xi/flightmanagement/CRM/Global http://tempuri.org/xi/flightmanagement/BP http://tempuri.org/xi/flightmanagement/BP/Global http://tempuri.org/xi/flightmanagement/Global hint: avoid special characters in XML names because package names of generated classes consumers tend to get complicated – this is a problem of many non-SAP frameworks
  • 11. © Tobias Trapp 2010 11 ABAPABAP ComponentComponent StructureStructure How to structure server proxies according to your ABAP component hierarchy? in NW 7.01 there can be only one proxy element per system (and ABAP namespace). ESR dependencies lead to dependencies in ABAP: proxy elements will be reused - so be careful if the proxies are in different ABAP components: http://tempuri.org/xi/flightmanagement/CRM http://tempuri.org/xi/flightmanagement/CRM/Global http://tempuri.org/xi/flightmanagement/BP http://tempuri.org/xi/flightmanagement/BP/Global http://tempuri.org/xi/flightmanagement/Global create packages that contain only ABAP proxies } } CUSTBP CUSTCRM SCs in an ABAP system
  • 12. © Tobias Trapp 2010 12 Table ofTable of ContentContent Implementation Details Standardization of Web Services Summary Component Architecture
  • 13. © Tobias Trapp 2010 13 BestBest PracticesPractices forfor Creating Enterprise ServicesCreating Enterprise Services Common mistakes and how to avoid them specify error handling: system errors, wrong input parameters, missing authorities… consider compensation scenarios: what happens if a web service call fails? use forward error handling in asynchronous scenarios consider reviews for ESR development – developers tend to break every rule because they can do anything in XML keep code in generated classes small – delegate to classes containing business logic for each method use naming conventions for data types, parameters, message types and message data types in generated classes develop in a test driven way: check ABAP classes using unit tests, test Enterprise Services using ABAP test tool resp. eCATT study best practices in SAP guidelines esp. the SAP Press book don‘t follow guidelines for SAP Business Suite blindly: asually an ES doesn‘t need to be XI 3.0 conform and contain more than 1 operation.
  • 14. © Tobias Trapp 2010 14 AbsolutelyAbsolutely necessarynecessary toto knowknow:: ExtendedExtended XML HandlingXML Handling Empty values vs. Null values NULL values have different semantics compared to initial values: - NULL values in an update service mean that they should not be changed - NULL values in a query mean that a data element is not relevant in a search Initial values can be coded as empty XML elements NULL values can be coded using xsi:nil and missing elements In the constructor of a server proxy switch extended XML handling on: set_extended_xml_handling( i_switch_on = abap_true ). Then you get the information about every data element (omitted, xsi:nil, initial) in an structure PRXCTRLTAB
  • 15. © Tobias Trapp 2010 15 AA hiddenhidden gemgem:: GenericGeneric Code List Provider FrameworkCode List Provider Framework Codes can be defined an ABAP backend system define code lists as XML schema enumeration types only if the values are well-defined & do not change In most cases code lists are defined in ABAP backend in customizing tables you can bind domain values, (text) tables to server proxy data elements and read them using the generic Enterprise Service QueryCodeList the framework is extensible – think of time depended customizing, subsets of customizing sets…
  • 16. © Tobias Trapp 2010 16 Table ofTable of ContentContent Implementation Details Standardization of Web Services Summary Component Architecture
  • 17. © Tobias Trapp 2010 17 ExplainExplain toto developersdevelopers thethe conceptconcept of Enterprise Servicesof Enterprise Services As software architect now you are well prepared for a SOA project, but don‘t forget: keep yourself informed - ABAP frameworks are rapidly evolved by SAP learn about eventing, service groups, forward error handling… What do developers of Enterprise Services need to know? a prototype implementation will help developers to understand the concepts teach developers the transactional behaviour esp. in update/change services: SET UPDATE TASK LOCAL, cl_soap_commit_rollback and that enterprise services are stateless – no DB cursor! don‘t forget to test the enterprise services with user with different authorization profiles in the ABAP backend.