Skip to content

Instantly share code, notes, and snippets.

@ns-1m
Forked from qmacro/ODataTable.html
Created June 25, 2012 05:59
Show Gist options
  • Save ns-1m/2986899 to your computer and use it in GitHub Desktop.
Save ns-1m/2986899 to your computer and use it in GitHub Desktop.
SAPUI5 says "Hello OData" to NetWeaver Gateway
// I am trying to modify this gist inorder to run into iPhone/iPad using jquery with User login (User, Password and source)
// Details using SAP gateway demo. I think we can modify this source
// http://gateway.server:port/sap/opu/sdata/IWFND/RMTSAMPLEFLIGHT/?$format=xml
// This is the SAP demo gateway portal
http://www.sdn.sap.com/irj/sdn/index?rid=/webcontent/uuid/1051f6d9-e87a-2e10-d188-e2786c7878b1
User: GW@ESW
Password: "ESW4GW"
- Host: gw.esworkplace.sap.com
- Port: 80
- Client: default (800)
I don't know if this source is the same as the example.
Consumption Model: http://gw.esworkplace.sap.com/sap/opu/odata/IWBEP/RMTSAMPLEFLIGHT_2/?$format=xml
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>SAP OData in SAPUI5 Data Table Control</title>
<!-- Load SAPUI5, select theme and control library -->
<script id="sap-ui-bootstrap"
type="text/javascript"
src="http://gateway.server:port/sapui5/sapui5-static/resources/sap-ui-core.js"
data-sap-ui-theme="sap_platinum"
data-sap-ui-libs="sap.ui.commons,sap.ui.table"></script>
<script>
var oTable = new sap.ui.table.DataTable();
oTable.addColumn(new sap.ui.table.Column({
label: new sap.ui.commons.Label({text: "Agency Name"}),
template: new sap.ui.commons.TextView().bindProperty("text", "NAME"),
sortProperty: "NAME"
}));
oTable.addColumn(new sap.ui.table.Column({
label: new sap.ui.commons.Label({text: "Street"}),
template: new sap.ui.commons.TextField().bindProperty("value", "STREET"),
sortProperty: "STREET",
}));
oTable.addColumn(new sap.ui.table.Column({
label: new sap.ui.commons.Label({text: "Post Code"}),
template: new sap.ui.commons.TextField().bindProperty("value", "POSTCODE"),
sortProperty: "POSTCODE",
}));
oTable.addColumn(new sap.ui.table.Column({
label: new sap.ui.commons.Label({text: "City"}),
template: new sap.ui.commons.TextField().bindProperty("value", "CITY"),
sortProperty: "CITY",
}));
oTable.addColumn(new sap.ui.table.Column({
label: new sap.ui.commons.Label({text: "Country"}),
template: new sap.ui.commons.TextField().bindProperty("value", "COUNTRY"),
sortProperty: "COUNTRY",
}));
oTable.addColumn(new sap.ui.table.Column({
label: new sap.ui.commons.Label({text: "Region"}),
template: new sap.ui.commons.TextField().bindProperty("value", "REGION"),
sortProperty: "REGION",
}));
oTable.addColumn(new sap.ui.table.Column({
label: new sap.ui.commons.Label({text: "Phone"}),
template: new sap.ui.commons.TextField().bindProperty("value", "TELEPHONE"),
sortProperty: "TELEPHONE",
}));
oTable.addColumn(new sap.ui.table.Column({
label: new sap.ui.commons.Label({text: "Web Site"}),
template: new sap.ui.commons.Link().bindProperty("text", "URL").bindProperty("href", "URL"),
sortProperty: "URL",
}));
oTable.addColumn(new sap.ui.table.Column({
label: new sap.ui.commons.Label({text: "Currency"}),
template: new sap.ui.commons.TextField().bindProperty("value", "CURRENCY"),
sortProperty: "CURRENCY",
}));
var oModel = new sap.ui.model.odata.ODataModel("http://gateway.server:port/sap/opu/sdata/iwfnd/RMTSAMPLEFLIGHT");
oTable.setModel(oModel);
oTable.bindRows("TravelagencyCollection");
oTable.placeAt("dataTable");
</script>
</head>
<body class="sapUiBody">
<h1>SAP OData in SAPUI5 Data Table Control</h1>
<div id="dataTable"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment