Binding
In abap2UI5 you share data between your ABAP code and the UI5 frontend with client->_bind( ). Binding is two-way: when the value is changed in an editable control, the framework writes it back to your ABAP attribute before the next event handler runs. Only the paths the user actually edited are transported back (a delta), so read-only data costs nothing on the way back.
Displaying Data
Bind an attribute to a display-only control (e.g. text) — nothing is editable there, so nothing syncs back:
CLASS zcl_app_hello_world DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
DATA name TYPE string.
ENDCLASS.
CLASS zcl_app_hello_world IMPLEMENTATION.
METHOD z2ui5_if_app~main.
client->view_display( z2ui5_cl_xml_view=>factory(
)->page( `abap2UI5 - Hello World`
)->text( `My Text`
)->text( client->_bind( name )
)->stringify( ) ).
ENDMETHOD.
ENDCLASS.This method works with tables, trees, and other nested data structures — see Tables and Trees.
Editing Data
Bind an attribute to an editable control (e.g. input). After an event, the framework has already synced the user's changes back to your ABAP attribute:
CLASS zcl_app_hello_world DEFINITION PUBLIC.
PUBLIC SECTION.
INTERFACES z2ui5_if_app.
DATA name TYPE string.
ENDCLASS.
CLASS zcl_app_hello_world IMPLEMENTATION.
METHOD z2ui5_if_app~main.
client->view_display( z2ui5_cl_xml_view=>factory(
)->page( `abap2UI5 - Hello World`
)->text( `Enter your name`
)->input( client->_bind( name )
)->button( text = `post` press = client->_event( `POST` )
)->stringify( ) ).
CASE client->get( )-event.
WHEN `POST`.
client->message_box_display( |Your name is { name }.| ).
RETURN.
ENDCASE.
ENDMETHOD.
ENDCLASS._bind_edit is obsolete
Earlier releases split binding into _bind (one-way) and _bind_edit (two-way). Both now bind two-way and write to the same model, so _bind_edit is only an obsolete alias of _bind — prefer _bind( ). You will still find _bind_edit in older examples.
Bound Attributes Must Be Public
_bind( ) accesses your class attributes from outside the controller via dynamic ASSIGN. This only works for attributes in the PUBLIC SECTION — PROTECTED and PRIVATE attributes are not visible to the framework and silently fail to bind: the value never reaches the frontend and edits never sync back. There is no compile-time or runtime error.
Always declare bound data in PUBLIC SECTION. This resembles the PAI/PBO logic, where data lived in global variables. See also Life Cycle → Lifecycle Pitfalls.
Binding to Structures
When the bound attribute is a structure, refer to a field directly with the - component selector. The framework generates one model path per field — the structure name and the component name, in upper case, joined by /:
TYPES: BEGIN OF ts_order,
customer TYPE string,
material TYPE string,
quantity TYPE i,
END OF ts_order.
DATA edit_row TYPE ts_order.
...
)->input( client->_bind( edit_row-customer ) ) " resolves to {/EDIT_ROW/CUSTOMER}
)->input( client->_bind( edit_row-material ) )
)->input( client->_bind( edit_row-quantity ) )Nested structures follow the same rule recursively (edit_row-address-city → /EDIT_ROW/ADDRESS/CITY). Internal tables of structures use one row context per item — see Tables.
Data-Type Mapping
ABAP and UI5 do not share a type system. When ABAP values cross to the frontend they are serialized to JSON and then read by UI5 controls. The table below is the reference for how each ABAP type travels on the wire and which UI5 binding it pairs with. For the controls that need an explicit type: or formatter, the linked sections in Formatter show the full binding-string pattern.
| ABAP type | On the wire | Typical UI5 use | Notes |
|---|---|---|---|
string, c LENGTH n | JSON string | Input, Text | Works without a formatter. |
i, int8, b, s | JSON number | Input type="Number", Text | Returned as string from inputs; cast back if you need an integer. |
p LENGTH n DECIMALS m, decfloat16, decfloat34 | JSON string | Input, Text + sap.ui.model.type.Float/Currency | Sent as a string to preserve precision. Locale formatting needs an explicit type — see Currency. |
f (binary float) | JSON number | Input, Text + sap.ui.model.type.Float | Binary float — prefer p or decfloat34 for monetary values to avoid rounding drift. |
n LENGTH n | JSON string of digits | Input + sap.ui.model.odata.type.String with isDigitSequence: true | Without the constraint, leading zeros render literally — see Digit Sequence. |
d | 8-char string YYYYMMDD | DatePicker + sap.ui.model.type.Date | Not an ISO date — a formatter is required for explicit locale or pattern control. See Date. |
t | 6-char string HHMMSS | TimePicker + sap.ui.model.type.Time | Same pattern as d — see Time. |
abap_bool (X/) | JSON string "X" / "" | CheckBox with expression binding or ABAP-side conversion | UI5's CheckBox expects true/false, not "X" — see Boolean. |
timestamp, timestampl, utclong | JSON string (packed digits for timestamp/timestampl; ISO-like for utclong) | DateTimePicker + ABAP-side conversion or custom formatter | No built-in UI5 type reads them directly. Split into d + t or convert to a yyyyMMddHHmmss string — see Timestamp. |
xstring | binary — must be base64-encoded in ABAP before binding | Image, FileUploader, pdf_viewer | The framework does not auto-encode. Convert with cl_web_http_utility=>encode_x_base64( ) (or cl_http_utility=>if_http_utility~encode_x_base64( ) on older releases) — see PDF and Upload / Download. |
| structure | JSON object | Bind individual fields with struct-field | One model path per field — see Binding to Structures. |
| internal table | JSON array | Table, List, Tree | One row context per item — see Tables and Trees. |
When a value looks wrong, the fix is almost always a UI5-side type (e.g. sap.ui.model.type.Date, sap.ui.model.type.Float) or an abap2UI5 Formatter. The shape is always the same — build a JSON binding string with parts and type, using path = abap_true on _bind to inject the raw model path:
)->input(
|\{ parts: [ `{ client->_bind( val = amount path = abap_true ) }`,
`{ client->_bind( val = currency path = abap_true ) }` ],
type: 'sap.ui.model.type.Currency' \}| )See Formatter for the full example with formatOptions, constraints, and read-only display variants.
