You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration/performance.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ ENDMETHOD.
40
40
### Suggestions
41
41
Want to tune your app further? A few tips:
42
42
- Call `client->view_display` only when needed. Prefer `client->view_model_update` so the UI5 framework only re-renders controls that have changed.
43
-
-Prefer `client->_bind`; use `client->_bind_edit`only when users need to make changes the backend processes. Otherwise, you'll cause needless data transfers.
43
+
-Bind data with `client->_bind` — the framework sends only the paths the user actually edited back to ABAP (a delta), so read-only and untouched fields cost nothing on the return trip. (`_bind_edit` is an obsolete alias of `_bind`.)
44
44
- Declare public attributes in your app class only for variables shown on the frontend. This keeps the framework from reading unused values.
45
45
- Follow standard ABAP best practices, like cutting loops and choosing sorted tables, just like in any other ABAP project.
0 commit comments