SlideShare uma empresa Scribd logo
1 de 17
Baixar para ler offline
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.

Mais conteúdo relacionado

Mais procurados

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
 

Mais procurados (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
 

Semelhante a 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
 

Semelhante a 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
 

Mais de 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
 

Mais de 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...
 

Último

SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
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
 
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
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
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
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
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
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
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
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
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
 

Último (20)

SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
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?
 
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)
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
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
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
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
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
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
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
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
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
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
 

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.