Skip to content
Merged
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
8 changes: 6 additions & 2 deletions misc/abapcloud/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,13 @@ The destination must point to the ABAP system root URL with no service path appe
- `HTML5.DynamicDestination`: `true`
- Correct root URL with no service path appended
- Proper authentication type based on the scenario:
- Same subaccount: `OAuth2UserTokenExchange`
- Cross-subaccount: `SAMLAssertion`
- Same subaccount: `OAuth2UserTokenExchange` or `SAMLAssertion`
- Cross-subaccount (requires trust between subaccounts): `SAMLAssertion`

The following is an example of an `OAuth2UserTokenExchange` destination for an ABAP Cloud system (same-subaccount scenario):

> **Note**: `OAuth2UserTokenExchange` is only applicable when the destination is configured in the same subaccount that hosts the ABAP Cloud instance. For cross-subaccount or cross-region scenarios, use `SAMLAssertion` instead. See [Enable an SAP BTP Destination for Usage Across Global Accounts or Between Different Regions Using SAMLAssertion](#enable-an-sap-btp-destination-for-usage-across-global-accounts-or-between-different-regions-using-samlassertion).

```json
{
"Authentication": "OAuth2UserTokenExchange",
Expand All @@ -75,6 +77,8 @@ The following is an example of an `OAuth2UserTokenExchange` destination for an A

Alternatively, `SAMLAssertion` can be used for both same-subaccount and cross-subaccount scenarios. The following is an example:

> **Note**: `SAMLAssertion` works on the same subaccount that hosts the ABAP Cloud instance without any additional trust configuration. When used across subaccounts, both subaccounts must be under the same global account and trust must be established between them — the signing certificate from the source subaccount must be imported into the target ABAP Cloud system. See [Cross-Subaccount Requirements](#cross-subaccount-requirements).

```json
{
"Authentication": "SAMLAssertion",
Expand Down
Loading