| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- {
- "_version": "1.21.0",
- "sap.app": {
- "id": "sap.ui.demo.orderbrowser",
- "type": "application",
- "resources": "resources.json",
- "i18n": {
- "bundleUrl": "i18n/i18n.properties",
- "supportedLocales": [
- ""
- ],
- "fallbackLocale": ""
- },
- "title": "{{appTitle}}",
- "description": "{{appDescription}}",
- "applicationVersion": {
- "version": "1.0.0"
- },
- "dataSources": {
- "mainService": {
- "uri": "/here/goes/your/serviceUrl/",
- "type": "OData",
- "settings": {
- "odataVersion": "2.0",
- "localUri": "localService/metadata.xml"
- }
- }
- }
- },
- "sap.ui": {
- "technology": "UI5",
- "icons": {
- "icon": "sap-icon://detail-view",
- "favIcon": "",
- "phone": "",
- "phone@2": "",
- "tablet": "",
- "tablet@2": ""
- },
- "deviceTypes": {
- "desktop": true,
- "tablet": true,
- "phone": true
- }
- },
- "sap.ui5": {
- "rootView": {
- "viewName": "sap.ui.demo.orderbrowser.view.App",
- "type": "XML",
- "async": true,
- "id": "app"
- },
- "dependencies": {
- "minUI5Version": "1.98.0",
- "libs": {
- "sap.f": {},
- "sap.m": {},
- "sap.ui.core": {}
- }
- },
- "contentDensities": {
- "compact": true,
- "cozy": true
- },
- "models": {
- "i18n": {
- "type": "sap.ui.model.resource.ResourceModel",
- "settings": {
- "bundleName": "sap.ui.demo.orderbrowser.i18n.i18n",
- "supportedLocales": [
- ""
- ],
- "fallbackLocale": ""
- }
- },
- "": {
- "dataSource": "mainService",
- "preload": true
- }
- },
- "routing": {
- "config": {
- "routerClass": "sap.f.routing.Router",
- "type": "View",
- "viewType": "XML",
- "path": "sap.ui.demo.orderbrowser.view",
- "controlId": "layout",
- "controlAggregation": "beginColumnPages",
- "bypassed": {
- "target": "notFound"
- },
- "async": true
- },
- "routes": [
- {
- "pattern": "",
- "name": "master",
- "target": "master"
- },
- {
- "pattern": "Orders/{objectId}/:?query:",
- "name": "object",
- "target": [
- "master",
- "object"
- ]
- }
- ],
- "targets": {
- "master": {
- "name": "Master",
- "level": 1,
- "id": "master"
- },
- "object": {
- "name": "Detail",
- "id": "detail",
- "level": 1,
- "controlAggregation": "midColumnPages"
- },
- "detailObjectNotFound": {
- "name": "DetailObjectNotFound",
- "id": "detailObjectNotFound",
- "controlAggregation": "midColumnPages"
- },
- "notFound": {
- "name": "NotFound",
- "id": "notFound"
- },
- "shipping": {
- "name": "Shipping",
- "parent": "object",
- "controlId": "iconTabFilterShipping",
- "controlAggregation": "content"
- },
- "processor": {
- "name": "Processor",
- "parent": "object",
- "controlId": "iconTabFilterProcessor",
- "controlAggregation": "content"
- }
- }
- },
- "flexBundle": false
- }
- }
|