Press "Enter" to skip to content

Posts published in “Enterprise Services”

How to design ABAP Proxies without ESR (using MDR)

0

Without SAP Process Orchestration or SAP PI we also have no ESR (Enterprise Service Repository) to model/design our Service Interfaces (and generate ABAP Proxies from ESR). However, it makes a…

ABAP Outbound Proxy: Add Link to Business Object

0

It is very useful to create a relationship between a business object (e.g. Sales Order) and the corresponding XI/PI Message (ABAP Proxy Runtime). As the message(s) are connected with the…

ABAP Inbound Proxy: Inside-Out vs. Outside-In

0

Implementing ABAP proxies is quite simple. You generate the ABAP classes via SPROXY (which connects to your ESR) and implement the code. Regarding the Service Interface Design and Implementation you…

ABAP Outbound Proxy: Set EOIO Queue

0

In order to use EOIO (Exactly-Once-In-Order), you have to pass the Queue ID to the class before calling the Outbound Proxy in your ABAP Program. It can be a static value like…

Usage Dependencies in Software Components

0

There is a useful functionality to reuse objects from one software component in another one. You can define this usage dependency in SLD or in ESR (software dependencies & underlying…

Decoupling and service-orientation at Amazon

1

Great article about Amazon´s transformation about a decade ago from an online book-seller into a billion-dollar, IaaS/cloud computing leader at API Evangelist It is a clear and direct mandate, issued by Jeff…

ABAP Outbound Proxy: Request Acknowledgements

0

To request System- or Application-Acknowledgements, you have to request them before calling the Outbound Proxy in your ABAP Program: DATA: l_proxy TYPE REF TO z…, acknowledgment_request_details TYPE PRX_ACK_REQUEST_DETAILS, async_messaging TYPE REF…