Skip to content

Commit

Permalink
add link and redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
renejeglinsky committed Sep 5, 2023
1 parent fb09ef3 commit 24f7409
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
7 changes: 4 additions & 3 deletions guides/data-privacy/annotations.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
status: released
redirect_from: guides/data-privacy/introduction
---

<style>
Expand All @@ -12,15 +13,15 @@ status: released

# Annotating Personal Data

In order to automate audit logging, personal data management, and data retention management as much as possible, the first and frequently only task to do as an application developer is to identify entities and elements (potentially) holding personal data using `@PersonalData` annotations.
In order to automate audit logging, personal data management, and data retention management as much as possible, the first and frequently only task to do as an application developer is to identify entities and elements (potentially) holding personal data using `@PersonalData` annotations.

[[toc]]



## Reference App Sample { #annotated-model }

In the remainder of this guide, we use the [Incidents Management reference sample app](https://github.com/SAP-samples/cap-sample-incidents-mgmt) as the base to add data privacy and audit logging to.
In the remainder of this guide, we use the [Incidents Management reference sample app](https://github.com/SAP-samples/cap-sample-incidents-mgmt) as the base to add data privacy and audit logging to.



Expand Down Expand Up @@ -128,7 +129,7 @@ annotate db.Customers with @PersonalData: {

Use this annotation to identify data subject's unique key, or a reference to it. References are commonly associations or foreign keys in subject details entities, or related ones, referring to a subject entity.

- Each `@PersonalData` entity needs to identify a the `DataSubjectID` element.
- Each `@PersonalData` entity needs to identify a the `DataSubjectID` element.
- For entities with `DataSubject` semantics, this is typically the primary key.
- For entities with `DataSubjectDetails` or `Other` semantics, this is usually an association to the data subject.

Expand Down
3 changes: 1 addition & 2 deletions guides/data-privacy/audit-logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,7 @@ Here is what you need to do additionally, to integrate with SAP Audit Log Servi
type: org.cloudfoundry.existing-service
```



[Learn more about *Audit Log Write API for Customers*](https://help.sap.com/docs/btp/sap-business-technology-platform/audit-log-write-api-for-customers?version=Cloud){.learn-more}


### Accessing Audit Logs
Expand Down
3 changes: 1 addition & 2 deletions guides/data-privacy/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ index: 67
label: Data Privacy
synopsis: >
CAP helps application projects to comply with data privacy regulations using SAP Business Technology Platform (BTP) services.
permalink: guides/data-privacy/
# layout: cookbook
status: released
---
Expand Down Expand Up @@ -60,7 +59,7 @@ The most essential requests you have to answer are those in the following table.

## Annotating Personal Data

The first and frequently only task to do as an application developer is to identify entities and elements (potentially) holding personal data using `@PersonalData` annotations. These are used to automate CAP-facilitated audit logging, personal data management, and data retention management as much as possible.
The first and frequently only task to do as an application developer is to identify entities and elements (potentially) holding personal data using `@PersonalData` annotations. These are used to automate CAP-facilitated audit logging, personal data management, and data retention management as much as possible.

[Learn more in the *Annotating Personal Data* chapter](annotations) {.learn-more}

Expand Down

0 comments on commit 24f7409

Please sign in to comment.