In this tutorial, we explore how features of OData V4 can be used in OpenUI5. We write a small app that consumes data from an OData V4 service to understand how to access, modify, aggregate, and filter data in an OData V4 model.
This tutorial has been moved.
For a TypeScript version, see TypeScript OData V4 Tutorial on GitHub.
Table that is bound to the People entity set initially requests its data, and how the data can be refreshed. We use the Console tab in the browser developer tools to monitor the communication between the browser and the server. We see the initial request as well as the requests for refreshing the data.$filter, $orderby, and $count.ResetDataSource action. In this step, we add a button that resets all data changes we made during the tutorial to their original state using this action.Related Information