Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
danjoa committed Sep 18, 2024
1 parent eeeab98 commit 17a5814
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
19 changes: 16 additions & 3 deletions about/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -455,9 +455,22 @@ Following is an excerpt of generic features provided:
- [Temporal Data](../guides/temporal-data)
- [Verticalization & Extensibility](../guides/extensibility/)

<br>

[See also the Features Overview](./features){.learn-more}
**CAP-level Service Integrations ('Calesi')**

- [Authentication → SAP Identity Services](../plugins/#security-ams)
- [Open Telementry → SAP Cloud Logging, Dynatrace, ...](../plugins/#telemetry)
- [Attachments → SAP Object Store](../plugins/#attachments)
- [Attachments → SAP Document Management Service](../plugins/#@cap-js/sdm)
- [Messaging → SAP Event Broker](../plugins/#event-broker)
- [Messaging → Kafka](../plugins/#apache-kafka)
- [Change Tracking](.../plugins/#change-tracking)
- [Notifications](../plugins/#notifications)
- [Audit Logging](../plugins/#audit-logging)
- [Personal Data Management](../guides/data-privacy/)

[Find more in the **CAP Plugins** page](../plugins){.learn-more}

[See also the **Features Overview**](./features){.learn-more}



Expand Down
11 changes: 6 additions & 5 deletions plugins/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,17 +154,18 @@ Available for:
## Attachments
The Attachments plugin provides out-of-the-box asset storage and handling. To use it, extend a domain model by using the predefined `aspect` called Attachments:
The Attachments plugin provides out-of-the-box handling of attachments stored in, for example, AWS S/3 through [SAP BTP's Object Store service](https://discovery-center.cloud.sap/serviceCatalog/object-store). To use it, simply add a composition of the predefined aspect `Attachments` like so:

```cds
extend my.Incidents with {
attachments: Composition of many Attachments
using { Attachments } from '@cap-js/attachments';
entity Incidents { ...
attachments: Composition of many Attachments // [!code focus]
}
```
![Screenshot showing the Attachments Table in a fiori app](assets/index/attachments-table.png)
That's all we need to automatically add an interactive list of attachments to your Fiori UIs as shown below.
It also provides a CAP-level, easy-to-use integration of the [SAP Object store](https://discovery-center.cloud.sap/serviceCatalog/object-store).
![Screenshot showing the Attachments Table in a fiori app](assets/index/attachments-table.png)
Features:
Expand Down

0 comments on commit 17a5814

Please sign in to comment.