Skip to content

Commit 75182ac

Browse files
authored
Update about.md
1 parent b9f5650 commit 75182ac

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

docs/get_started/about.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,24 @@ outline: [2, 6]
33
---
44
# Introduction
55

6-
abap2UI5 is an open-source project that enables ABAP developers to build modern SAP Fiori/UI5 applications using only ABAP code — no JavaScript, OData, or RAP required.
6+
**Developing UI5 Apps Purely in ABAP – no JavaScript, OData, or RAP required.**
7+
8+
abap2UI5 is an open-source framework that brings back the simplicity of classic ABAP development to modern UI5 applications. Just as Selection Screens and ALVs could generate functional UIs with minimal code, abap2UI5 lets you create web applications with just a few lines of ABAP.
9+
10+
```abap
11+
CLASS my_app DEFINITION PUBLIC.
12+
PUBLIC SECTION.
13+
INTERFACES z2ui5_if_app.
14+
ENDCLASS.
15+
16+
CLASS my_app IMPLEMENTATION.
17+
METHOD z2ui5_if_app~main.
18+
client->message_box( |Hello World|) ).
19+
ENDMETHOD.
20+
ENDCLASS.
21+
```
22+
23+
That's it – your first UI5 app is ready!
724

825
##### About
926
abap2UI5 simplifies UI5 development for both cloud and on-premise environments, bringing back the simplicity of classic ABAP development. Just as Selection Screens and ALVs could generate functional UIs with minimal code, abap2UI5 lets you create modern web applications with just a few lines of ABAP. The framework handles all frontend complexity, allowing you to focus on business logic.

0 commit comments

Comments
 (0)