The main intent of this scenario is to complement an existing business process in an SAP solution – currently SAP S/4HANA with additional business process steps. This involves adding major logic and/or additional data and goes beyond simple UI changes.
This application showcases:
- Building applications on SAP Business Technology Platform (BTP) using SAP Cloud Application Programming Model(CAP)
- Consuming events from SAP S/4HANA on premise using SAP Event Mesh
- Consuming REST APIs from SAP S/4HANA on premise using SAP Business Technology Platform Connectivity Service
A business scenario is used to showcase how to build a S/4 HANA on premise extension Application on SAP BTP.
John who is an employee of Business Partner Validation Firm iCredible, which is a third-party vendor of ACME Corporation would like to get notifications whenever new Business Partners are added in the S/4HANA backend system of ACME Corporation. John would then be able to review the Business Partner details in his extension app. He would proceed to visit the Business Partner’s registered office and do some background verification. John would then proceed to update/validate the verification details into the extension app. Once the details are verified, the Business Partner gets activated in the S/4HANA system of ACME Corporation.
-
Custom extension application that works independently from S/4HANA.
-
Changes in S/4 communicated via events in real time to extension application.
-
Compute intensive processing available on demand (serverless environment).
-
Vendor personnel needs access to only custom app
The Business Partner Validation application is developed using the SAP Cloud Application programming Model (CAP) and runs on the SAP BTP, Cloud Foundry runtime. It consumes platform services like SAP Event Mesh, SAP HANA and Connectivity. The events occuring in S/4 HANA on premise are inserted into the Event Mesh queue. The application running in Cloud Foundry is notified on events, consumes them from the queue and inserts the event data into the HANA database. The Business Partner Validation Application uses S/4 HANA REST API's to read additional Business Partner Data from the S/4 HANA system.
- SAP S/4HANA on premise system.
- SAP Business Technology Platform account
Make sure you run the latest long-term support (LTS) version of Node.js with an even number like 16. Refrain from using odd versions, for which some modules with native parts will have no support and thus might even fail to install. In case of problems, see the Troubleshooting guide for CAP for more details.
- Cloud Foundry Command Line Interface (CLI)
- Visual Studio Code
- cds-dk
- SQLite
- To build the multi target application, we need the Cloud MTA Build tool, download the tool from here
- For Windows system, install 'MAKE' from https://sap.github.io/cloud-mta-build-tool/makefile/
- multiapps plugin -
cf install-plugin multiapps
- mbt -
npm install -g mbt
The application requires below set of SAP Business Technology Platform Entitlements/Quota
Service | Plan | Number of Instances |
---|---|---|
Event Mesh | default | 1 |
SAP HANA Schemas & HDI Containers | hdi-shared | 1 |
SAP HANA Cloud | hana | 1 |
Cloud Foundry runtime | 1 |
You can use SAP BTP - Boosters to setup the subaccount. Boosters Will create the subaccount with the required entitlements, subscriptions and assign the required roles to your user to run this application. Steps to run the booster are provided in link. You can create subaccount manually also following link
- Open terminal in VSCode
- Run
npm install sqlite3 --save-dev
- Run
cds watch
-
Build the application
mbt build -p=cf
-
Login to Cloud Foundry by typing the below commands on command prompt
cf api <api> cf login -u <username> -p <password>
api
- URL of the Cloud Foundry landscape that you are trying to connect to.Select the org and space when prompted to.
-
Deploy the application
Navigate to mta_archives folder and run the below command from CLI
cf deploy BusinessPartnerValidation_1.0.0.mtar
-
Go to Launchpad and access the 'Business Partner Validation' application
-
Click on Business Partner Validation tile
- The list of BusinessPartners along with their verification status gets displayed.
- Login to the S/4HANA on-premise system
- Enter transaction code 'bp'
- Click on Person
-
Move to the status tab and check mark the 'Central Block' lock. Save the BP. This will create a new Business Partner
- Now go back to the BusinessPartnerValidation application to see if the new BusinessPartners has come on the UI
- Go to the details page for the new BusinessPartner. Click on edit.
- Change the Verification Status to VERIFIED. You can also edit the street name, postal code also if needed. Save the data.
- Open S/4HANA system, bp transaction. Search for the newly created bp
- Double click on the BP
- You can see that the central Block lock has been removed
- You can also notice that in the BusinessPartner Validation UI, the status is now set as COMPLETED.
No known issues.
In case you find a bug, or you need additional support, please open an issue here in GitHub.
Copyright (c) 2020 SAP SE or an SAP affiliate company. All rights reserved. This project is licensed under the Apache Software License, version 2.0 except as noted otherwise in the LICENSE file.