-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b25eaa9
commit 8b1f44c
Showing
5 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Custom Controls | ||
|
||
You can develop your own UI5 custom controls and integrate them with the ABAP backend. Check out [this guideline](https://community.sap.com/t5/technology-blogs-by-members/abap2ui5-11-extensions-ii-guideline-for-developing-new-features-in/ba-p/13576797) to learn more. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
outline: [2, 4] | ||
--- | ||
# Frontend | ||
|
||
The abap2UI5 frontend artifacts are stored in the app folder. If you want to make adjustments, follow these steps: | ||
|
||
#### Setup | ||
Open VS Code or an editor of your choice, use the terminal: | ||
``` | ||
git clone https://github.com/abap2UI5/abap2UI5 | ||
cd app | ||
``` | ||
Replace the backend with your abap system in all three files: | ||
|
||
<img width="400" alt="Code 2024-11-22 07 44 12" src="https://github.com/user-attachments/assets/155c9a3f-8a0a-494b-8fc4-a4bba2bf0e90"> | ||
|
||
|
||
#### Develop & Test | ||
Set the correct backend system in the yamls <br> | ||
Replace "/sap/bc/z2ui5" with your endpoint in the manifest | ||
``` | ||
npm i | ||
npm run start-noflp | ||
``` | ||
This is the output in the terminal: | ||
|
||
<img width="1000" alt="Screenshot 2024-11-22 at 07 45 55" src="https://github.com/user-attachments/assets/b7df2e48-7bf4-4454-9d05-d2bc8c4a6b49"> | ||
|
||
#### Before PR | ||
Transform UI5 App to stringified ABAP | ||
``` | ||
npm run transform | ||
``` |