Skip to Content
Technical Articles
Author's profile photo Ioana Stefania Santimbrean

Part 0: How to build an extension application for SAP S/4HANA Cloud using CAP, SAP Cloud SDK and SAP Fiori elements

SAP S/4HANA Cloud customers have their own specific business needs. Some of these business needs can be implemented using In-App Extensibility, but some of them require Side-by-Side Extensibility. This blog post series covers how to do Side-by-Side Extensibility by building an application on SAP Cloud Platform.

More specific, how to build the application using SAP Cloud Application Programming Model – Node.js, SAP Cloud SDK – JavaScript and SAP Fiori elements.

What to expect from this blog post series?

The purpose of this blog post series is to showcase the end-to-end technical knowledge of building an extension application using the mentioned technologies. The application will follow a simple business scenario and will focus on implementation steps.

I will cover a step-by-step tutorial with code snippets, screenshots and explanations of how to develop and configure the application.

It has been a very interesting journey for me to develop this app and I wanted to share my discoveries because I did not find a blog post that covers this scenario. Please feel free to leave feedback, suggest alternatives or ask questions. My goal here is to have a end-to-end scenario covered and available. I’m a 100% open for improving or expanding it, so any contributions are welcomed!

What’s the business scenario?

In the SAP S/4HANA Cloud system we have Business Partner Master Data. Let’s imagine we want some end-users to be able to modify the Addresses of these Business Partners.

Part 0: Preparations

This blog post will cover the prerequisites and the preparation steps which are needed before starting to implement the application.

What are the prerequisites for this part?

Install:

Access to:

  • SAP S/4HANA Cloud system

SAP S/4HANA Cloud system access is needed, but the initial steps can be done using the SAP API Business Hub sandbox. So don’t give up yet if you don’t have access!

SAP API Business Hub

We want to extend the SAP S/4HANA Cloud system, so we need a way of communication between it and the app. SAP S/4HANA Cloud can expose data through APIs, which will be consumed by the app. You can use SAP API Business Hub to look for the API that corresponds to the Business Partner Master Data.

Steps to follow:

  1. Go to https://api.sap.com/ and select SAP S/4HANA Cloud.SAP%20API%20Business%20Hub
  2. In the left panel, choose Type OData.
  3. Type business partner in the search and press Enter. Choose Business Partner (A2X).
  4. You can test the API here, or use Postman to test it also. Press on Details tab to find out more about this API and to take the needed information for activating it in the S/4HANA Cloud system.
  5. From the Details tab, copy the Communication Scenario SAP_COM_0008. It is needed in the creation of Communication Arrangement.

SAP S/4HANA Cloud configurations

This part covers how to create a Communication Arrangements, Communication Systems and Communication Users.

To access these Fiori apps make sure you have Administrator business role (SAP_BR_ADMINISTRATOR).

* Please follow the naming conventions specific to your project, the naming used was just for demo purpose.

Steps to follow:

  1. Go in SAP S/4HANA Cloud and look for the Fiori App “communication arrangements” by typing in the search bar and clicking on the app.
  2. Choose New
  3. Choose SAP_COM_0008 in Scenario. For Arrangement name you can put in some text also to recognize it, but it is useful to keep the name of the communication scenario. Then press Create.
  4. Choose New for Communication System
  5. Write a system ID and Name, then press Create
  6. For Host Name write localhost and for Logical System and Business System also write a string
  7. Scroll down to Users for Inbound Communication and press on the + button
  8. Press on New User button
  9. Write user name and description and press on Propose Password. Copy the Proposed Password somewhere and do not lose it. Then Press on Create.
  10. Then choose the DEMO_USER or the name that you gave to the newly created user.
  11. Press OK
  12. Then scroll down again to Users for Outbound Communication and press on “+”.
  13. Create a dummy user name and password:
  14. Press on Save. You will be taken back to the Communication Arrangements and you will see that the Communication System and Inbound communication User Name were auto-completed with the ones you just created.
  15. Here, you scroll down to Inbound Services and copy the Service URL for Business Partner (A2X) OData V2: https://my306116-api.s4hana.ondemand.com/sap/opu/odata/sap/API_BUSINESS_PARTNER
  16. For the purpose of the app, you can deactivate all of the Outbound Services by deselecting the Active checkbox for Service Status like this:
  17. Then press save and you should see this

API Testing in Postman

This part covers how to test the SAP S/4HANA Cloud API which we exposed in the previous step.

Steps to follow:

  1. Go to Postman and press on the + button to create a new request. This should be what you see:
  2. Paste the URL you saved from the communication arrangement. Choose the Authorization tab and select Type: Basic Auth. Paste the username and the password which you saved when creating the communication user. You should see this:
  3. Response should look like this:
  4. Quick note, if later you want to test the POST request, first do a GET/HEAD request in which you put in the header X-CSRF-Token with value Fetch. Then take the X-CSRF-Token response header value and use it in your POST request.

 

Final words

Now you know how to:

  • look for the SAP S/4HANA Cloud APIs in SAP API Business Hub
  • activate those APIs by creating a communication arrangement, system and user in SAP S/4HANA Cloud
  • test the activated APIs in Postman

Part 1 is published

In the next blog post from this series I will cover how to:

  • develop an application with SAP Cloud Application Programming Model
  • configure, build & deploy to SAP Cloud Platform

 

Assigned Tags

      8 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Ancuta Mezinca
      Ancuta Mezinca

      Great post, thank you for the insight.

      Author's profile photo Ioana Stefania Santimbrean
      Ioana Stefania Santimbrean
      Blog Post Author

      Thank you so much! 🙂

      Author's profile photo Calin Lazuran
      Calin Lazuran

      Congratulations for the initiative and for the content of this article.
      Good job!

      Author's profile photo Ioana Stefania Santimbrean
      Ioana Stefania Santimbrean
      Blog Post Author

      Thank you so much! 🙂

      Author's profile photo Ebru POLAT
      Ebru POLAT

      Great blog Stefania, very intuitive and helpful!

      Author's profile photo Ioana Stefania Santimbrean
      Ioana Stefania Santimbrean
      Blog Post Author

      Thank you, Ebru 🙂

      Author's profile photo jyothir aditya k
      jyothir aditya k

      Hi Ioana Stefania Santimbrean : I am trying this in SAP S/4HANA Cloud trial. I am unable to see "Identity and Access management" tile . Also in app finder, cant find anything. So we cannot try this in trial account ?

      Author's profile photo Ioana Stefania Santimbrean
      Ioana Stefania Santimbrean
      Blog Post Author

      Hello,

      I have not tried it in SAP S/4HANA Cloud trial, but the first parts in each blog post from this series can be done using SAP API Business Hub.

      Maybe you need to request roles via ARM?

      If you manage to find a way to use the SAP S/4HANA Cloud trial, it would be very much appreciated if you can leave a comment with tips & tricks.

      Best regards,

      Stefania