Press "Enter" to skip to content

Posts published in “Interface Modeling”

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…

WHINT Proxy FileTransfer

2

Whenever possible, please try to avoid file-based integration (flat or not, going through the file system is not a good integration pattern), see blog post: Avoid using flat files!. However, sometimes…

Decoupling and service-orientation at Amazon

0

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 Inbound Proxy: Extended XML handling

0

If you can not differentiate between existing XML tags or empty contents or if you use the CDT (Data Type/GDT based on the Core Data Type) Indicator (with values true/false), you…

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…