Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
Dan_vL
Product and Topic Expert
Product and Topic Expert

Appendix A:  OData

Open Data Protocol (OData) is a data access protocol for web applications.  A JavaScript library such as datajs is used to access an OData source.

The below sample uses an OData source from OData.org.

There is a list of sample services available at http://www.odata.org/ecosystem.

One of the nice features of OData is how simple it is to access an OData source.  Simply enter the OData URL with a $metadata parameter to see a description of the service.  http://services.odata.org/OData/OData.svc/$metadata.

This describes that there are four entities named Products, Advertisements, Categories, Suppliers, what fields are in each entity and the associations between them.

To access the data, specify which data to read such as http://services.odata.org/OData/OData.svc/CategoriesAs seen below, there are three categories, Food, Beverages and Electronics.

The data is formatted as either atom(xml) or json.  The json format is less verbose.  http://services.odata.org/OData/OData.svc/Categories?$format=json

The URLs to navigate the association between categories and products are shown in this link http://services.odata.org/OData/OData.svc/Categories(2)/Products?$format=json which shows the products for category 2 or Electronics.

Here are a few more examples.

First three products http://services.odata.org/OData/OData.svc/Products?$top=3&$format=json

Fourth product http://services.odata.org/OData/OData.svc/Products(4)?$format=json

Products that start with the letter F http://services.odata.org/OData/OData.svc/Products?$filter=startswith(Name, 'F') eq true&$format=json

The following link may also be helpful. OData URI's

The below steps demonstrate how to create a simple OData web app.

Create a folder named C:\ODataSample

Create a file named ODataSample\products.html and paste in the following code.


<html>
<head>


<script src="datajs-1.1.2.min.js"></script>
<script>
function successCallback(data, response) {   
var productsTable = document.getElementById("productsTable");
      for (var i = 0; i < data.results.length; i++) {
          var row = productsTable.insertRow(1);
          var cell1 = row.insertCell(0);
          var cell2 = row.insertCell(1);
          var cell3 = row.insertCell(2);
          cell1.innerHTML = data.results[i].Name;
          cell2.innerHTML = data.results[i].Description;
          cell3.innerHTML = data.results[i].Price;
      }
}
 
function errorCallback(e) {
      alert("An error occurred");
      alert(e);
}

function init() {
      OData.defaultHttpClient.enableJsonpCallback=true;
  //
http://datajs.codeplex.com/wikipage?title=OData%20Security&referringTitle=Cross%20Domain%20Requests
    OData.read("http://services.odata.org/OData/OData.svc/Products", successCallback, errorCallback);
}
</script>
</head>
<body onload="init()">
<table id="productsTable"><tr><th>Name</th><th>Description</th><th>Price</th></tr></table>
</body>
</html>






Download the latest datajs file (datajs-1.1.2.min.js) from datajs and place it in the folder ODataSample.

The datajs JavaScript library provides a read method that takes an OData URL and returns the data as a JavaScript object.

See also the example Cross-Site Request Forgery (CSRF) in the security section that performs create, read, update and delete operations.

Back to Getting Started With Kapsel

7 Comments