This tool aims to assist SAP customers using SAP Cloud Integration on Neo datacenters who wish to upgrade to SAP Integration Suite on Multi-Cloud datacenters.
Important: There is an official migration pack available via SAP Note 2937549 which leverages a collection of Postman scripts. This Github repository is not related with the official migration pack mentioned in the SAP Note. However, the functionality is very similar:
This repo keeps track of versions via Tags:
This Github repository is an alternative tool which aims to achieve the same as the Postman collection while offering greater flexibility and control over your migration project. Areas where this tool provides an advantage over the Postman collection:
This tool is provided as-is and is not covered by SAP Support. A write-up about this tool can be found here: SAP Blog: Getting Grips on your Cloud Integration Migration from Neo to Cloud Foundry
You will need:
If you don't have a SAP Integration Suite license yet, you can use the BTP Free Tier available at no cost. See https://blogs.sap.com/2021/11/17/sap-integration-suite-free-tier-is-now-available-on-sap-btp/
This tool is designed to run locally on your own laptop, server or VM. It is developed using the SAP Cloud Application Programming Model, using Node.js as server language. It can also be hosted on SAP Business Technology Platform natively via CF, HC and Work Zone, or via Docker.
Locally stored data is kept in a local SQLite database file.
You can use the provided Dockerfile to install and run the application:
In Terminal or Command Prompt, run:
git clone https://github.com/SAP/migration-tool-for-cloud-integration.git --depth 1
cd migration-tool-for-cloud-integration
npm install
cds deploy --to sqlite
docker build -t migrationtool .
(in case you receive an error on the Sqlite3 package, delete the package-lock.json file and try the build again)Now the tool is built and can be started:
docker run -p 4004:4004 migrationtool
http://localhost:4004/home.html
To stop the tool, in Terminal or Command Prompt, press control-C
It is required to have an active installation of Node.js (version 20 or later), available from the Node.js website, including Node Package Manager (NPM). You can verify your installed version via node -v
.
To install, in Terminal or Command Prompt, run:
npm i -g @sap/cds-dk
git clone https://github.com/SAP/migration-tool-for-cloud-integration.git --depth 1
cd migration-tool-for-cloud-integration
npm install
cds deploy --to sqlite
Now the tool is installed and can be started:
npm start
http://localhost:4004/home.html
To stop the tool, in Terminal or Command Prompt, press control-C
This option requires you to have a HANA Cloud database (or you can use Postgres), and a subscription to SAP Work Zone (standard edition)
Optional: The default MTA.yaml configuration specifies HANA Cloud. To switch to Postgres, do the following: 1. Change package.json hybrid > db > kind to 'postgres' 2. Change mta.yaml and change the 'requires' section of the srv module + disable the db-deployer in favor of the postgres-deployer, as well as the postgres db resource.
To install, in Terminal or Command Prompt, run:
npm i -g @sap/cds-dk
git clone https://github.com/SAP/migration-tool-for-cloud-integration.git --depth 1
cd migration-tool-for-cloud-integration
npm install
mbt build
cf deploy ./mta_archives/migrationtool_1.3.0.mtar
Now you can add the Fiori applications to your Work Zone site via the Work Zone Admin site:
Now you can grant users access to the application via the BTP Cockpit Role Collections
CPI Migration Tool User
Now the tool can be accessed via Work Zone:
To locally monitor the application logs, run the following command in Terminal: cf logs migrationtool-srv | grep -v RTR
To enable Hybrid mode, excute cds bind -2 migrationtool-db
to use the HANA database and run your local application via cds watch --profile hybrid
.
To learn how to use the tool, please refer to the user documentation.
Specify the version to be used in /app/home.html
Version availability: https://ui5.sap.com/versionoverview.html
More information on changelog: https://cap.cloud.sap/docs/releases
None so far, but please also refer to FAQ and Limitations
Please search or create a new Issue in this Github repository to obtain support.
Contributions are certainly welcome, see ways to contribute.
See Our Code of Conduct.
Copyright 2021 SAP SE or an SAP affiliate company and migration-tool-for-cloud-integration contributors. Please see our LICENSE for copyright and license information.