@@ -28,10 +28,10 @@ tab->columns(
2828 )->column( )->text( `CountryCode` ).
2929
3030tab->items( )->column_list_item( )->cells(
31- )->text( ' {FLIGHT>AirportID}'
32- )->text( ' {FLIGHT>Name}'
33- )->text( ' {FLIGHT>City}'
34- )->text( ' {FLIGHT>CountryCode}' ).
31+ )->text( ` {FLIGHT>AirportID}`
32+ )->text( ` {FLIGHT>Name}`
33+ )->text( ` {FLIGHT>City}`
34+ )->text( ` {FLIGHT>CountryCode}` ).
3535```
3636By using the growing property we can make use of the feature that not all data is loaded at once, leveraging performance.
3737
@@ -51,10 +51,10 @@ METHOD z2ui5_if_app~main.
5151 )->column( )->text( `CountryCode` ).
5252
5353 tab->items( )->column_list_item( )->cells(
54- )->text( ' {FLIGHT>AirportID}'
55- )->text( ' {FLIGHT>Name}'
56- )->text( ' {FLIGHT>City}'
57- )->text( ' {FLIGHT>CountryCode}' ).
54+ )->text( ` {FLIGHT>AirportID}`
55+ )->text( ` {FLIGHT>Name}`
56+ )->text( ` {FLIGHT>City}`
57+ )->text( ` {FLIGHT>CountryCode}` ).
5858
5959 client->view_display( tab->stringify( ) ).
6060
@@ -81,10 +81,10 @@ tab->columns(
8181 )->column( )->text( `SupplementID` )->get_parent( ).
8282
8383tab->items( )->column_list_item( )->cells(
84- )->text( ' {TRAVEL>TravelID}'
85- )->text( ' {TRAVEL>BookingID}'
86- )->text( ' {TRAVEL>BookingSupplementID}'
87- )->text( ' {TRAVEL>SupplementID}' ).
84+ )->text( ` {TRAVEL>TravelID}`
85+ )->text( ` {TRAVEL>BookingID}`
86+ )->text( ` {TRAVEL>BookingSupplementID}`
87+ )->text( ` {TRAVEL>SupplementID}` ).
8888
8989client->view_display( tab->stringify( ) ).
9090
@@ -119,16 +119,16 @@ data(tab) = page->table(
119119 growing = abap_true ).
120120
121121tab->columns(
122- )->column( )->text( ' {TRAVEL>/#Currency/Currency/@sap:label}' )->get_parent(
123- )->column( )->text( ' {TRAVEL>/#Currency/Currency_Text/@sap:label}' )->get_parent(
124- )->column( )->text( ' {TRAVEL>/#Currency/Decimals/@sap:label}' )->get_parent(
125- )->column( )->text( ' {TRAVEL>/#Currency/CurrencyISOCode/@sap:label}' ).
122+ )->column( )->text( ` {TRAVEL>/#Currency/Currency/@sap:label}` )->get_parent(
123+ )->column( )->text( ` {TRAVEL>/#Currency/Currency_Text/@sap:label}` )->get_parent(
124+ )->column( )->text( ` {TRAVEL>/#Currency/Decimals/@sap:label}` )->get_parent(
125+ )->column( )->text( ` {TRAVEL>/#Currency/CurrencyISOCode/@sap:label}` ).
126126
127127tab->items( )->column_list_item( )->cells(
128- )->text( ' {TRAVEL>Currency}'
129- )->text( ' {TRAVEL>Currency_Text}'
130- )->text( ' {TRAVEL>Decimals}'
131- )->text( ' {TRAVEL>CurrencyISOCode}' ).
128+ )->text( ` {TRAVEL>Currency}`
129+ )->text( ` {TRAVEL>Currency_Text}`
130+ )->text( ` {TRAVEL>Decimals}`
131+ )->text( ` {TRAVEL>CurrencyISOCode}` ).
132132
133133client->view_display( tab->stringify( ) ).
134134
0 commit comments