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: guides/data-privacy/pdm.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,7 +101,7 @@ Make sure to have [indicated all relevant entities and elements in your domain m
101
101
102
102
As an additional step, you have to create flat projections on the additional business data, like transactional data.
103
103
104
-
In our model, we have `Incidents` and `Conversations`, which are connected via a [composition](https://github.com/SAP-samples/cloud-cap-samples/blob/gdpr/orders/db/schema.cds). Since SAP Personal Data Manager needs flattened out structures, we define a helper view `IncidentConversationView` to flatten this out.
104
+
In our model, we have `Incidents` and `Conversations`, which are connected via a composition. Since SAP Personal Data Manager needs flattened out structures, we define a helper view `IncidentConversationView` to flatten this out.
105
105
106
106
We have to then add data privacy-specific annotations to this new view as well. The `IncidentConversationView` as transactional data is marked as `Other`. In addition, it is important to tag the correct field, which defines the corresponding data subject, in our case that is `customer_ID @PersonalData.FieldSemantics: 'DataSubjectID';`
Copy file name to clipboardExpand all lines: guides/databases-sqlite.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -317,7 +317,7 @@ The following is an overview of advanced features supported by the new database
317
317
318
318
### Path Expressions & Filters {.node}
319
319
320
-
The new database service provides **full support** for all kinds of [path expressions](../cds/cql#path-expressions), including [infix filters](../cds/cql#with-infix-filters) and [exists predicates](../cds/cql#exists-predicate). For example, you can try this out with *[cap/samples](https://github.com/sap-samples/cloud-cap-samples)* as follows:
320
+
The new database service provides **full support** for all kinds of [path expressions](../cds/cql#path-expressions), including [infix filters](../cds/cql#with-infix-filters) and [exists predicates](../cds/cql#exists-predicate). For example, you can try this out with *[@capire/samples](https://github.com/capire/samples)* as follows:
@@ -53,7 +53,7 @@ This guide describes a way to manage development and deployment via *[monorepos]
53
53
node_modules
54
54
gen
55
55
```
56
-
> The outcome of this looks and behaves exactly as the monorepo layout in *[cap/samples](https://github.com/sap-samples/cloud-cap-samples)*, so we can exercise the subsequent steps in there...
56
+
> The outcome of this looks and behaves exactly as the monorepo layout in *[cap/samples](https://github.com/capire/samples)*, so we can exercise the subsequent steps in there...
57
57
58
58
3. Test-drive locally:
59
59
```sh
@@ -71,7 +71,7 @@ This guide describes a way to manage development and deployment via *[monorepos]
71
71
Each microservice can be started independently. If you start each microservice, one after the other in a different terminal, the connection is already established.
72
72
73
73
[Learn more about Automatic Bindings by `cds watch`](../extensibility/composition#bindings-via-cds-watch){.learn-more}
74
-
74
+
75
75
76
76
::: details The project structure
77
77
@@ -148,7 +148,7 @@ These are the (not so beneficial) side effects you when using a shared persisten
148
148
```
149
149
:::
150
150
151
-
> Note: the `using` directives refer to `index.cds` files existing in the target packages. Your projects may have different entry points.
151
+
> Note: the `using` directives refer to `index.cds` files existing in the target packages. Your projects may have different entry points.
152
152
153
153
::: details Try it out
154
154
@@ -176,7 +176,7 @@ cds build --for hana
176
176
cd ..
177
177
```
178
178
179
-
> Note: As we can see in the output for `cds deploy` and `cds build`, it also correctly collects and adds all initial data from enclosed `.csv` files.
179
+
> Note: As we can see in the output for `cds deploy` and `cds build`, it also correctly collects and adds all initial data from enclosed `.csv` files.
180
180
:::
181
181
182
182
::: details Other project structures
@@ -208,7 +208,7 @@ This section is about how to deploy all 3+1 projects at once with a common _mta.
208
208
209
209

210
210
211
-
[cap-samples](https://github.com/SAP-samples/cloud-cap-samples?tab=readme-ov-file#welcome-to-capsamples) already has an all-in-one deployment implemented. Similar steps are necessary to convert projects with multiple CAP applications into a shared database deployment.
211
+
[@capire/samples](https://github.com/capire/samples#readme) already has an all-in-one deployment implemented. Similar steps are necessary to convert projects with multiple CAP applications into a shared database deployment.
212
212
213
213
### Deployment Descriptor
214
214
@@ -403,7 +403,7 @@ Add the admin role
403
403
::: details Configure each app for cloud readiness
404
404
Add NPM dependency `@sap/xssec`:
405
405
406
-
```shell
406
+
```shell
407
407
npm i @sap/xssec --workspace bookstore
408
408
npm i @sap/xssec --workspace orders
409
409
npm i @sap/xssec --workspace reviews
@@ -1024,7 +1024,7 @@ In the bookstore example, while reviews may be down, orders may still be possibl
1024
1024
1025
1025
This benefit is null for apps with synchronous dependencies on each other. If A depends on synchronous calls to B, then if B is down, A is down as well.
1026
1026
1027
-
### Multiple Deployment Units
1027
+
### Multiple Deployment Units
1028
1028
1029
1029
With multiple apps, you can still deploy them together as one unit, for example as part of a multitarget application archive.
1030
1030
Once an application grows bigger, this takes a significant amount of time.
Copy file name to clipboardExpand all lines: node.js/cds-connect.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -126,7 +126,7 @@ Prefix the module path in `impl` with `./` to refer to a file relative to your p
126
126
127
127
### cds.requires.<i>\<srv\></i>`.kind`
128
128
129
-
As service configurations inherit from each other along `kind` chains, we can refer to default configurations shipped with `@sap/cds`, as you commonly see that in our [_cap/samples_](https://github.com/sap-samples/cloud-cap-samples), like so:
129
+
As service configurations inherit from each other along `kind` chains, we can refer to default configurations shipped with `@sap/cds`, as you commonly see that in our [_cap/samples_](https://github.com/capire/samples), like so:
130
130
131
131
```json
132
132
"cds": { "requires": {
@@ -409,11 +409,11 @@ If the `vcap` configuration contains multiple properties such as `name`, `label`
409
409
"cds": {
410
410
"requires": {
411
411
"hana": {
412
-
"vcap": {
413
-
"label": "hana",
414
-
"plan": "standard",
415
-
"name": "myHana",
416
-
"tags": "database"
412
+
"vcap": {
413
+
"label": "hana",
414
+
"plan": "standard",
415
+
"name": "myHana",
416
+
"tags": "database"
417
417
}
418
418
}
419
419
}
@@ -465,10 +465,10 @@ CAP services often come with a default `vcap` configuration. In rare cases, the
You can use `cds.test` in REPL, for example, by running this from your command line in [*cap/samples*](https://github.com/sap-samples/cloud-cap-samples):
588
+
You can use `cds.test` in REPL, for example, by running this from your command line in [*cap/samples*](https://github.com/capire/samples):
0 commit comments