Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions guides/deploy/to-kyma.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ breadcrumbs:
- Deployment
- Deploy to Kyma
status: released
impl-variants: true
# uacp: Used as link target from Help Portal at https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/29c25e504fdb4752b0383d3c407f52a6.html and https://help.sap.com/viewer/65de2977205c403bbc107264b8eccf4b/Cloud/en-US/e4a7559baf9f4e4394302442745edcd9.html
---

Expand Down
1 change: 1 addition & 0 deletions guides/security/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ label: Authentication
synopsis: >
This guide explains how to authenticate CAP services.
status: released
impl-variants: true
---

<script setup>
Expand Down
1 change: 1 addition & 0 deletions guides/security/authorization.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
synopsis: >
This guide explains how to restrict access to data by adding respective declarations to CDS models, which are then enforced by CAP's generic service providers.
uacp: Used as link target from SAP Help Portal at https://help.sap.com/products/BTP/65de2977205c403bbc107264b8eccf4b/e4a7559baf9f4e4394302442745edcd9.html
impl-variants: true
---

<script setup>
Expand Down
1 change: 1 addition & 0 deletions guides/security/cap-users.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ label: CAP Users
synopsis: >
This guide introduces CAP user abstraction and role assignments.
status: released
impl-variants: true
---

<script setup>
Expand Down
1 change: 0 additions & 1 deletion guides/security/remote-authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ status: released

# Outbound Authentication { #remote-authentication }

<ImplVariantsHint />

This guide explains how to authenticate remote services.

Expand Down
2 changes: 2 additions & 0 deletions guides/services/consuming-services.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ If you want to use data from other services or you want to split your applicatio

[[toc]]

<ImplVariantsHint />

## Introduction

If you want to use data from other services or you want to split your application into multiple microservices, you need a connection between those services. We call them **remote services**. As everything in CAP is a service, remote services are modeled the same way as internal services — using CDS.
Expand Down
2 changes: 2 additions & 0 deletions guides/uis/fiori.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ CAP provides out-of-the-box support for SAP Fiori elements. This guide explains
[[toc]]


<ImplVariantsHint />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nott needed when this PR is merged: #2393

Suggested change
<ImplVariantsHint />


## SAP Fiori Preview

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.
Expand Down
4 changes: 4 additions & 0 deletions tools/apis/cds-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
synopsis: >
The guide provides an overview of custom build processes for CAP projects, explaining how to tailor the standard build process to specific project requirements.
status: released
impl-variants: true
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
impl-variants: true

---

# Implement Build Plugins <Since version="7.5.0" package="@sap/cds-dk" />
Expand All @@ -11,6 +12,9 @@ CDS already offers build plugins to create deployment layouts for the most use c
Build plugins are run by `cds build` to generate the required deployment artifacts. Build tasks hold the actual project specific configuration. The task's `for` property value has to match the build plugin ID.

The following description uses the [postgres build plugin](https://github.com/cap-js/cds-dbs/blob/55e511471743c0445d41e8297f5530abe167a270/postgres/cds-plugin.js#L9-L48) as reference implementation. It combines runtime and design-time integration in a single plugin `@cap-js/postgres`.

<ImplVariantsHint />

Comment on lines +15 to +17
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<ImplVariantsHint />

## Add Build Logic

A build plugin is a Node.js module complying to the [CDS plugin architecture](../../node.js/cds-plugins).
Expand Down
Loading