Skip to content

Commit 080e868

Browse files
authored
Update concept.md
1 parent edca833 commit 080e868

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docs/technical/concept.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,10 @@ This leads to the second key architectural shift in abap2UI5: Instead of binding
138138

139139
This means CDS Views and OData services are no longer consumed directly on the frontend. Instead, the complete UI state — both view and model — is sent from the backend in a single response. Any user changes in the UI are then returned to the backend via a lightweight AJAX call containing the updated view model — no OData routing involved.
140140

141-
Developers do not need to manually configure models or bindings. abap2UI5 handles this internally. All the developer needs to do is expose attributes of their ABAP class via a simple binding method — everything else is managed automatically.
141+
Developers do not need to manually configure models or bindings. abap2UI5 handles this internally. All that’s required is to expose class attributes via a simple binding method — the framework takes care of the rest.
142+
143+
A typical backend response includes both the XML View:
142144

143-
A typical response from the backend includes both the XML view:
144145
```xml
145146
<mvc:View xmlns="sap.m" xmlns:core="sap.ui.core" xmlns:form="sap.ui.layout.form" xmlns:mvc="sap.ui.core.mvc" displayBlock="true" height="100%">
146147
<Shell>
@@ -157,7 +158,7 @@ A typical response from the backend includes both the XML view:
157158
</Shell>
158159
</mvc:View>
159160
```
160-
And its corresponding view model:
161+
And its corresponding View Model:
161162
```json
162163
{
163164
"MODEL": {
@@ -167,7 +168,7 @@ And its corresponding view model:
167168
}
168169
}
169170
```
170-
This final architecture looks like this:
171+
The overall architecture looks like this:
171172

172173
<p align="center">
173174
<img width="600" alt="image" src="https://github.com/user-attachments/assets/f4df9291-c067-495f-bb52-a68e165e15c1" />

0 commit comments

Comments
 (0)