Skip to content

Create Your Own abap2UI5 Build

License

Notifications You must be signed in to change notification settings

abap2UI5/builder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

abap2UI5-builder

Easily create your own abap2UI5 build with the ABAP version and addons you need.

Features:

  • Integrates abap2UI5, frontend, and multiple addons into a single project
  • Automatically renames all artifacts to your custom namespace
  • Supports multiple builds on the same system
  • Install your new build with a single abapGit pull

Find default builds for various use cases here.

Build Process

  1. Edit the configuration file build.jsonc to specify the ABAP version and repositories to include here:
{
  "abap_version": "Cloud",
  "repositories": [
    "abap2UI5",
    "layout-variant-management",
    "table-maintenance"
  ]
}

Then run the clone process:

npm run clone
  1. (optional) Customize the namespace in rename.jsonc here, then run:
npm run rename
  1. (optional) Configure abaplint in abaplint.jsonc here, then run:
npm run abaplint
  1. Your new build is located in the dist folder. Create a new build branch with:
npm run branch
git checkout -b build
git add .
git commit -m "my new build"
git push origin build --force
  1. Pull this branch into your ABAP system via abapGit, and you’re ready to go! 🎉
Automate with GitHub Actions

You can automate the build process using GitHub Actions:

npm run build

Supported Projects

Name Renaming Cloud v750 v702
abap2UI5 X X X X
samples X X X
layout-variant-management X X X
table-maintenance X X X
sql-console X

Your project is not listed here? Feel free to send a PR and extend the list in config-repos.jsonc here.

Compatibility
  • Cloud: S/4 Public Cloud, BTP ABAP Environment
  • v750: S/4 Private Cloud, S/4 On-Premise, R/3 NetWeaver 750
  • v702: R/3 NetWeaver <750

Concept

Development & Productive Version
Screenshot 2025-02-27 at 13 55 03
Multiple Installations
Screenshot 2025-02-27 at 14 00 50
Namespace

All build artifacts are generated under the zabap2ui5 namespace. This allows both development (z2ui5) and production (zabap2ui5) versions to coexist in the same system. To use a custom namespace, modify the rename.jsonc file.

Transport to Production

The development version (z2ui5) remains in a local package within the development system. The productive version (zabap2ui5 or a customer namespace) can be transported like any other backend artifact to quality and production systems.

Update Cycle

The development version can be updated frequently to develop new features and bug fixes for abap2UI5. The productive version is updated only when necessary, reducing testing efforts, transport overhead, and other update-related tasks.

Limitations & To-Do

  • Frontend renaming with custom namespaces (e.g., /ZZZ/) is not yet supported [1493]

Credits & Blogs

Issues & Feature Requests

For bug reports or feature requests, please open an issue in the main repository.

About

Create Your Own abap2UI5 Build

Resources

License

Security policy

Stars

Watchers

Forks