-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest19.json
160 lines (160 loc) · 3.55 KB
/
manifest19.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"_version": "1.15.0",
"sap.app": {
"id": "card.explorer.table.card",
"type": "card",
"title": "Sample of a Table Card",
"subTitle": "Sample of a Table Card",
"applicationVersion": {
"version": "1.0.0"
},
"shortTitle": "A short title for this Card",
"info": "Additional information about this Card",
"description": "A long description for this Card",
"tags": {
"keywords": [
"Table",
"Card",
"Sample"
]
}
},
"sap.ui": {
"technology": "UI5",
"icons": {
"icon": "sap-icon://table-view"
}
},
"sap.card": {
"type": "Table",
"data": {
"json": {
"results": [
{
"salesOrder": "5000010050",
"customerName": "Robert Brown Entertainment",
"netAmount": "2K USD",
"status": "Delivered",
"statusState": "Success"
},
{
"salesOrder": "5000010051",
"customerName": "Entertainment Argentinia",
"netAmount": "127k USD",
"status": "Canceled",
"statusState": "Error"
},
{
"salesOrder": "5000010052",
"customerName": "Brazil Technologies",
"netAmount": "8K USD",
"status": "In Progress",
"statusState": "Warning"
},
{
"salesOrder": "5000010053",
"customerName": "Quimica Madrilenos",
"netAmount": "25K USD",
"status": "Delivered",
"statusState": "Success"
},
{
"salesOrder": "5000010054",
"customerName": "Development Para O Governo",
"netAmount": "7K USD",
"status": "Delivered",
"statusState": "Success",
"showStateIcon": true
},
{
"salesOrder": "5000010050",
"customerName": "Robert Brown Entertainment",
"netAmount": "2K USD",
"status": "Delivered",
"statusState": "Success",
"showStateIcon": true,
"customStateIcon": "sap-icon://activity-2"
},
{
"salesOrder": "5000010051",
"customerName": "Entertainment Argentinia",
"netAmount": "127k USD",
"status": "Canceled",
"statusState": "Error"
},
{
"salesOrder": "5000010052",
"customerName": "Brazil Technologies",
"netAmount": "8K USD",
"status": "In Progress",
"statusState": "Warning"
},
{
"salesOrder": "5000010052",
"customerName": "Brazil Technologies",
"netAmount": "8K USD",
"status": "In Progress",
"statusState": "Warning"
}
],
"columns": [
{
"title": "Sales Order",
"visibleFlag": true,
"identifier": true
},
{
"title": "Customer",
"visibleFlag": true
},
{
"title": "Net Amount",
"visibleFlag": false
},
{
"title": "Status",
"visibleFlag": true
}
]
}
},
"header": {
"title": "Sales Orders for Key Accounts",
"subTitle": "Today"
},
"content": {
"data": {
"path": "/results"
},
"row": {
"columns": [
{
"title": "{/columns/0/title}",
"value": "{salesOrder}",
"identifier": "{/columns/0/identifier}",
"visible": "{/columns/0/visibleFlag}"
},
{
"title": "{/columns/1/title}",
"value": "{customerName}",
"visible": "{/columns/1/visibleFlag}"
},
{
"title": "{/columns/2/title}",
"value": "{netAmount}",
"hAlign": "End",
"visible": "{/columns/2/visibleFlag}"
},
{
"title": "{/columns/3/title}",
"value": "{status}",
"state": "{statusState}",
"visible": "{/columns/3/visibleFlag}",
"showStateIcon": "{showStateIcon}",
"customStateIcon": "{customStateIcon}"
}
]
}
}
}
}