-
Notifications
You must be signed in to change notification settings - Fork 9
/
manifest.json
40 lines (40 loc) · 1 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"_version": "1.15.0",
"sap.app": {
"id": "cards.sac.creditprojection",
"type": "card",
"title": "SAC Credit Projection",
"subTitle": "",
"description": "{{description}}",
"i18n": "i18n/i18n.properties",
"applicationVersion": {
"version": "2.0.0"
}
},
"sap.ui": {
"technology": "UI5",
"deviceTypes": {
"desktop": true,
"phone": true,
"tablet": true
}
},
"sap.card": {
"type": "WebPage",
"header": {},
"content": {
"src": "{parameters>/SAC_url/value}&page=4",
"sandbox": "allow-same-origin allow-scripts allow-popups allow-forms allow-modals allow-downloads",
"minHeight": "57rem"
},
"configuration": {
"parameters": {
"SAC_url": {
"value": "<YOUR_SAC_STORY_URL>",
"type": "string",
"description": "The base url of your SAC story. Example: https://<YOUR_HOST>.sapanalytics.cloud/sap/fpa/ui/tenants/<YOUR_TENANT>/app.html#/story2?shellMode=embed&/s2/<YOUR_STORY>/?url_api=true&pageBar=disable&view_id=story2"
}
}
}
}
}