You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: advanced/fiori.md
+101-5Lines changed: 101 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,4 @@
1
1
---
2
-
shorty: Fiori UIs
3
2
synopsis: >
4
3
CAP provides out-of-the-box support for SAP Fiori elements front ends.
5
4
permalink: advanced/fiori
@@ -9,7 +8,7 @@ impl-variants: true
9
8
uacp: Used as link target from Help Portal at https://help.sap.com/products/BTP/65de2977205c403bbc107264b8eccf4b/e4a7559baf9f4e4394302442745edcd9.html
10
9
---
11
10
12
-
# Serving Fiori UIs
11
+
# Serving SAP Fiori UIs
13
12
14
13
{{ $frontmatter.synopsis }}
15
14
@@ -23,13 +22,13 @@ This guide explains how to add one or more SAP Fiori elements apps to a CAP proj
23
22
24
23
## SAP Fiori Preview
25
24
26
-
For entities exposed via OData V4 there is a _Fiori preview_ link on the index page. It dynamically serves an SAP Fiori Elements list page that allows you to quickly see the effect of annotation changes without having to create a UI application first.
25
+
For entities exposed via OData V4 there is a _Fiori preview_ link on the index page. It dynamically serves an SAP Fiori elements list page that allows you to quickly see the effect of annotation changes without having to create a UI application first.
27
26
28
27
::: details Be aware that this is **not meant for production**.
29
28
30
29
<divclass="impl node">
31
30
32
-
The preview not meant as a replacement for a proper SAP Fiori Elements (UI5) application.
31
+
The preview is not meant as a replacement for a proper SAP Fiori elements (UI5) application.
33
32
It is only active locally where the [development profile](../node.js/cds-env#profiles) is enabled.
34
33
35
34
To also enable it in cloud deployments, for test or demo purposes maybe, set <Config>cds.fiori.preview:true</Config>.
@@ -38,7 +37,7 @@ To also enable it in cloud deployments, for test or demo purposes maybe, set <Co
38
37
39
38
<divclass="impl java">
40
39
41
-
The preview not meant as a replacement for a proper SAP Fiori Elements (UI5) application.
40
+
The preview is not meant as a replacement for a proper SAP Fiori elements (UI5) application.
42
41
It is active by default, but disabled automatically in case the [production profile](../java/developing-applications/configuring#production-profile) is enabled.
43
42
44
43
To also enable it in cloud deployments, for test or demo purposes maybe, set <Configjava>cds.index-page.enabled:true</Config>.
@@ -744,4 +743,101 @@ Cache Control feature is currently supported on the Java runtime only.
744
743
745
744
<divid="fiori-compat" />
746
745
746
+
## Hierarchical Tree Views
747
+
748
+
Recursive hierarchies are parent-child hierarchies, where each entity references its parent and through that defines the hierarchical structure. A common example is a company organization structure or HR reporting, where each employee entity references another employee as a direct report or manager.
749
+
750
+
Database support for a generic hierarchy implementation by CAP runtimes:
751
+
752
+
| Runtime\DB | SAP HANA | H2 | PostgreSQL | SQLite |
0 commit comments