* Copyied from fiori/app/admin * Added Supplier + Value Help + Texts * Fixed bug in replication handler that caused to return wrong data
128 lines
4.0 KiB
JSON
128 lines
4.0 KiB
JSON
{
|
|
"_version": "1.8.0",
|
|
"sap.app": {
|
|
"id": "admin",
|
|
"type": "application",
|
|
"title": "Manage Books",
|
|
"description": "Sample Application",
|
|
"i18n": "i18n/i18n.properties",
|
|
"dataSources": {
|
|
"AdminService": {
|
|
"uri": "/admin/",
|
|
"type": "OData",
|
|
"settings": {
|
|
"odataVersion": "4.0"
|
|
}
|
|
}
|
|
},
|
|
"-sourceTemplate": {
|
|
"id": "ui5template.basicSAPUI5ApplicationProject",
|
|
"-id": "ui5template.smartTemplate",
|
|
"-version": "1.40.12"
|
|
}
|
|
},
|
|
"sap.ui5": {
|
|
"dependencies": {
|
|
"libs": {
|
|
"sap.fe.templates": {}
|
|
}
|
|
},
|
|
"models": {
|
|
"i18n": {
|
|
"type": "sap.ui.model.resource.ResourceModel",
|
|
"uri": "i18n/i18n.properties"
|
|
},
|
|
"": {
|
|
"dataSource": "AdminService",
|
|
"settings": {
|
|
"synchronizationMode": "None",
|
|
"operationMode": "Server",
|
|
"autoExpandSelect" : true,
|
|
"earlyRequests": true,
|
|
"groupProperties": {
|
|
"default": {
|
|
"submit": "Auto"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"routing": {
|
|
"routes": [
|
|
{
|
|
"pattern": ":?query:",
|
|
"name": "BooksList",
|
|
"target": "BooksList"
|
|
},
|
|
{
|
|
"pattern": "Books({key}):?query:",
|
|
"name": "BooksDetails",
|
|
"target": "BooksDetails"
|
|
},
|
|
{
|
|
"pattern": "Books({key}/author({key2}):?query:",
|
|
"name": "AuthorsDetails",
|
|
"target": "AuthorsDetails"
|
|
}
|
|
],
|
|
"targets": {
|
|
"BooksList": {
|
|
"type": "Component",
|
|
"id": "BooksList",
|
|
"name": "sap.fe.templates.ListReport",
|
|
"options": {
|
|
"settings" : {
|
|
"entitySet" : "Books",
|
|
"navigation" : {
|
|
"Books" : {
|
|
"detail" : {
|
|
"route" : "BooksDetails"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"BooksDetails": {
|
|
"type": "Component",
|
|
"id": "BooksDetailsList",
|
|
"name": "sap.fe.templates.ObjectPage",
|
|
"options": {
|
|
"settings" : {
|
|
"entitySet" : "Books",
|
|
"navigation" : {
|
|
"Authors" : {
|
|
"detail" : {
|
|
"route" : "AuthorsDetails"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"AuthorsDetails": {
|
|
"type": "Component",
|
|
"id": "AuthorsDetailsList",
|
|
"name": "sap.fe.templates.ObjectPage",
|
|
"options": {
|
|
"settings" : {
|
|
"entitySet" : "Authors"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"contentDensities": {
|
|
"compact": true,
|
|
"cozy": true
|
|
}
|
|
},
|
|
"sap.ui": {
|
|
"technology": "UI5",
|
|
"fullWidth": false
|
|
},
|
|
"sap.fiori": {
|
|
"registrationIds": [],
|
|
"archeType": "transactional"
|
|
}
|
|
} |