Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/orders/webapp/Component.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sap.ui.define(["sap/fe/core/AppComponent"], function(AppComponent) {
"use strict";
return AppComponent.extend("orders.Component", {
return AppComponent.extend("capire.orders.Component", {
metadata: { manifest: "json" }
});
});
Expand Down
34 changes: 19 additions & 15 deletions app/orders/webapp/manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
{
"_version": "1.8.0",
"_version": "1.28.0",
"sap.app": {
"id": "orders",
"id": "capire.orders",
"type": "application",
"title": "Order Management",
"description": "CAP Sample Application",
"i18n": "i18n/i18n.properties",
"applicationVersion": {
"version": "1.0.0"
},
"dataSources": {
"OrdersService": {
"uri": "/odata/v4/orders/",
Expand All @@ -23,6 +26,7 @@
},
"sap.ui5": {
"dependencies": {
"minUI5Version": "1.136.1",
"libs": {
"sap.fe.templates": {}
}
Expand All @@ -38,12 +42,7 @@
"synchronizationMode": "None",
"operationMode": "Server",
"autoExpandSelect" : true,
"earlyRequests": true,
"groupProperties": {
"default": {
"submit": "Auto"
}
}
"earlyRequests": true
}
}
},
Expand Down Expand Up @@ -77,7 +76,8 @@
"name": "sap.fe.templates.ListReport",
"options": {
"settings" : {
"entitySet" : "Orders",
"contextPath" : "/Orders",
"liveMode": true,
"navigation" : {
"Orders" : {
"detail" : {
Expand All @@ -94,7 +94,7 @@
"name": "sap.fe.templates.ObjectPage",
"options": {
"settings" : {
"entitySet": "Orders",
"contextPath": "/Orders",
"navigation" : {
"Items": {
"detail": {
Expand All @@ -121,7 +121,7 @@
"name": "sap.fe.templates.ObjectPage",
"options": {
"settings" : {
"entitySet": "Orders_Items"
"contextPath": "/Orders/Items"
}
}
},
Expand All @@ -131,7 +131,7 @@
"name": "sap.fe.templates.ObjectPage",
"options": {
"settings" : {
"entitySet": "Books",
"contextPath": "/Books",
"navigation": {
"author": {
"detail": {
Expand All @@ -148,7 +148,7 @@
"name": "sap.fe.templates.ObjectPage",
"options": {
"settings" : {
"entitySet": "Authors"
"contextPath": "/Authors"
}
}
}
Expand All @@ -161,10 +161,14 @@
},
"sap.ui": {
"technology": "UI5",
"fullWidth": false
"deviceTypes": {
"desktop": true,
"phone": true,
"tablet": true
}
},
"sap.fiori": {
"registrationIds": [],
"archeType": "transactional"
}
}
}