Back to blog
Posted April 2 2020
Written by Jesse Thibodeau

How does SAP API (Application Programming Interface) work?

Application Programming Interfaces, also known as API, play a critical role in the way we interact with technology nowadays. In this article, I demystify API using SAP products as an example.

What is an API?

As mentioned above, API stands for Application Programming Interface, where Interface is the key word.

Plug_How does SAP Application Programming Interface API work_Createch

In the context of an ERP like SAP, data is structured and stored in a database.  This data is then isolated and protected by different layers of security, with everything wrapped by multiple lines of code enforcing the respect of a particular data model.

To interact with this data, special tools (modules, functions, classes) are programmed to allow specific actions on this data model, in read or write mode.  These tools are commonly known as APIs. Most new generation applications and ERPs have APIs to facilitate communication with internal data. 

The rest of this blog will focus on SAP APIs. In order to better understand the role of APIs in a computer ecosystem let's start by understanding where they come from.

History of APIs

RFC (Remote Function Call)

Whoever knows SAP well enough will know about BAPIs, but maybe not their exact identity.

The word BAPI is not a coincidence (BAPI = Business API) a term specific to SAP with very specific attributes:

  • Programming handled by a Function module RFC-enabled, an SAP proprietary protocol allowing the Function to be called from the outside world;
  • A logic that implements a specific action of a Business Object (SAP internal Object encapsulating a real object, ex: Purchase Order, Employee, etc.);
  • For actions of ureation or Update, the transactional LUW (Logical Unit of Work) is preserved; simply put, one specific action at a time, and no commit on the database;
  • The Function module is released/approved for general use by SAP, they guarantee its functionality and it is supported through system upgrades.

SAP offers some libraries (connectors) for different programming languages (VB, Java) allowing custom systems to connect to SAP to achieve different actions. A lot of old custom systems and Apps still use these tools today. 

Web Services

With the integration of a web server in SAP's application layer, it's now possible to communicate using HTTP(S) protocol.  This communication method will quickly replace RFC as the protocol of choice to automatically integrate systems. Ultimately, this will allow the emergence of web services, protocols used to communicate between devices.

SOAP (Simple Object Access Protocol)

The SOAP format under HTTP makes it relatively simple for systems to communicate, with data being transferred in XML format.

We now regularly find examples of interfaces between SAP systems (ECC or S/4) and multiple external partners to automate critical business processes (ex: vendor invoice transfer, shipping data, delivery labels, etc.).  These partners usually charge a fee for these services (APIs) based on volume of calls.

As a real-life example, our development team have consumed several times, in SAP ECC and SAP S/4HANA, SOAP APIs produced by Canada Post to generate labels used to ship orders or tracking numbers which we store in the SAP document.

 

A member of my team has also recently participated in multiple projects in which we must interact, with SOAP calls, between SAP S/4 HANA and their own product Concur (or an alternative, Trindocs) to transfer vendor data and their invoices.

REST (Representational State Transfer)

A few years later, a new style surfaces, REST, based on a data modeling concept and the methods to interact with these data.  We're talking about a style here, or an approach, instead of a Protocol. No new technology is used, existing rules of the web are respected, but the payload is lighter (no WSDL) compared to SOAP.  Best practices are usually to restrict ourselves to very precise actions on a clearly defined object.  Usually transferred as JSON (lighter than XML) under HTML, this new style will gain a lot of popularity with the web community, including most new mobile app.

Google Trends, from 2004 to 2016, general interest in the subject:

REST API vs SOAP API_How does SAP Application Programming Interface API work_CreatechFor more information on SOAP vs REST (or "how to battle insomnia"), you can easily find multiple sources of information, but the details quickly become painful and require a very good knowledge of web development technologies.

OData

In 2007, Microsoft developed a new Open Source protocol named OData, standardizing and simplifying the production and consumption of REST APIs.  The format shares similarities with JDBC and ODBC APIs but applies mostly to object data models instead of being limited to relational databases.

SAP will adopt the OData protocol, which will become the tool of choice for data transfers between its new front end Fiori and the application layer.

Why APIs are important for business?

Many companies will stand out by focusing on their APIs offer, which will become even more popular than their original product or service. APIs web traffic, now automated from machine to machine, will overtake regular user traffic.

Web services API_How does SAP Application Programming Interface API work_CreatechThis growing interest will spread to the point where we now have web platforms where APIs are the star (ex: AWS).  These platforms, like Microsoft Azure, offer a sort of blank slate where developers from all sources participate and add content which supports the platform.

We use APIs in our daily lives without realizing it

Why APIs are important for business_How does SAP Application Programming Interface API work_Createch

We've all shared some interesting news or other articles on our Facebook wall or Instagram profile. Just recently, I was pleasantly surprised to connect to my "Revenue Canada" account (which I don't know) using my personal bank account (which I know very well). Some video games will even, transparently, use third party storage APIs to save a player's progress and preferences. These interactions are made by APIs.

Human interaction is being eclipsed by more and more applications (including mobile) communicating with each other by REST APIs, creating some sort of social network for machines.

SAP Cloud Platform APIs (SCP)

SAP Cloud Platform API SCP_How does SAP Application Programming Interface API work_CreatechWith the appearance of SAP Cloud applications, developers no longer have access to the application layer to manipulate data or processes.  SAP provide a (growing) list of APIs to developers to accomplish this interaction.

SAP API Business Hub

To consoliate and facilitate searching for all sorts of APIs for different cloud products, SAP launched its API Business Hub.  Here's an example of a search for APIs in the purchasing domain, and their different formats:

SAP API Business Hub_How does SAP Application Programming Interface API work_CreatechThe SAP API Business Hub even allows to generate snippets of code in different languages to facilitate the API consumption.  SAP offers a sandbox with real data for quickly and easily testing APIs.  The list and its organization evolve continuously, we must stay tuned!

SAP Cloud Platform API Management

SAP's Cloud Platform (SCP) puts at developers' disposal a service called API Management.  Here we can expose our own API, create products (API combinations), add security or other required limitations, track consumption, evaluate statistics and errors, etc.

Using the integration with the WebIDE, we can even create Fiori apps based on a template and embed in our app a call to one of these APIs.

I have personally spent many hours over the years looking for details on different actions of an API, following the sometimes very thin and scattered documentation found all over the Internet. The quality and format of information found today is a clear improvement.

With this sort of gathering and homogenization of information as well as the automatic generation of pieces of code, it has never been easier to develop professional and integration applications.

It is certain that these tools and their integration will not stop evolving, so it's important to stay informed. Contact us for more information!

New call-to-action

References:

These Articles Could Also Interest You
Author slug - talan-sap
Talan SAP
 
Talan SAP
Posted January 16 2024
Author slug - cédric-sauzereau
Cédric Sauzereau
 
Cédric Sauzereau
Posted September 8 2023