Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
secondsky avatar

Sap Btp Cloud Identity Services

  • 219 installs
  • 399 repo stars
  • Updated August 4, 2026
  • secondsky/sap-skills

Configures SAP BTP Cloud Identity Services: Identity Authentication, Provisioning, and Authorization Management for OIDC/SAML, IdP federation, and trust.

About

Provides guidance for setting up authentication, user provisioning, and policy-based authorization for SAP BTP applications. A developer uses it when configuring IAS/IPS/AMS, subaccount trust, or migrating from XSUAA.

  • Covers IAS, IPS, and AMS across OIDC and SAML
  • Handles IdP federation, subaccount trust, and XSUAA migration

Sap Btp Cloud Identity Services by the numbers

  • 219 all-time installs (skills.sh)
  • +39 installs in the week ending Jul 27, 2026 (Skillselion tracking)
  • Ranked #734 of 2,203 Security skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/secondsky/sap-skills --skill sap-btp-cloud-identity-services

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs219
repo stars399
Last updatedAugust 4, 2026
Repositorysecondsky/sap-skills

What it does

Configures SAP BTP Cloud Identity Services: Identity Authentication, Provisioning, and Authorization Management for OIDC/SAML, IdP federation, and trust.

Files

SKILL.mdMarkdownGitHub ↗

SAP Cloud Identity Services

SAP Cloud Identity Services are a group of services on SAP BTP that manage identity and access across cloud and on-premise systems. They provide single sign-on, user provisioning, and policy-based authorization.

The services comprise:

  • Identity Authentication (IAS) — cloud-based authentication, SSO (OIDC/SAML 2.0), corporate IdP federation, conditional authentication, and user store management. Acts as the identity provider for SAP BTP applications.
  • Identity Provisioning (IPS) — identity lifecycle management as a service. Synchronizes users and groups between source and target systems (SAP and non-SAP) with full and delta read modes, real-time provisioning, and transformation support.
  • Identity Directory — the central user store. Provides SCIM 2.0 REST API, custom schemas, and generates the Global User ID distributed by IPS to SAP cloud applications.
  • Authorization Management (AMS) — policy-based authorization for BTP applications. Developers define policies in Data Control Language (DCL); administrators refine and assign them via the administration console.

Related Skills

  • sap-btp-connectivity — destination service and connection authentication mechanics (OAuth client credentials, principal propagation through Cloud Connector)
  • sap-cap-capire — CAP application-level auth usage (role templates, @requires annotations, cds deploy with xs-security.json)
  • sap-btp-best-practices — high-level security governance and production deployment patterns
  • sap-btp-cloud-platform — BTP account setup, subaccount configuration, service instance creation

When to Use This Skill

  • Registering an OIDC or SAML 2.0 application in IAS
  • Configuring corporate identity provider federation (IdP proxy)
  • Establishing trust between a BTP subaccount and an IAS tenant
  • Setting up Identity Provisioning source/target systems and jobs
  • Writing or refining AMS authorization policies (DCL)
  • Migrating from XSUAA to IAS-based authentication
  • Troubleshooting token validation, audience, or issuer mismatch errors
  • Configuring conditional authentication (risk-based, MFA)
  • Integrating IAS with the SAP BTP Identity service (automatic OIDC app creation)

Quick Reference

ServicePurposeKey Objects
IASAuthentication & SSOApplications (OIDC/SAML), IdPs, conditional auth, user store
IPSUser/group provisioningSource systems, target systems, proxy systems, transformations, jobs
Identity DirectoryUser persistenceUsers, groups, custom schemas, Global User ID
AMSPolicy-based authorizationAuthorization policies, DCL rules, policy templates, restrictions

Identity Authentication (IAS)

IAS is the entry point for authentication in SAP BTP applications. It supports OIDC and SAML 2.0 protocols, acts as an identity provider or a proxy to corporate IdPs, and provides conditional authentication based on user attributes, email domain, user group, or IP range.

Application Registration

Register applications in the IAS admin console under Applications and Resources > Applications. Each application defines:

  • Application Type — OIDC or SAML 2.0
  • Trust Configuration — SP metadata upload (SAML) or redirect URIs (OIDC)
  • Authentication — method, conditional rules, IdP selection
  • User Attributes — which attributes are sent in tokens/assertions

When using the SAP BTP Identity service (xsuaa replacement), the service instance automatically creates an OIDC application in IAS. No manual registration is needed.

Corporate IdP Federation

IAS can act as a proxy: end users authenticate at a corporate IdP (Azure AD, Okta, etc.), and IAS bridges the token for SAP applications. Configure under Applications and Resources > Corporate Identity Providers.

For details, see references/identity-authentication.md.

Identity Provisioning (IPS)

IPS synchronizes users and groups between systems. It supports source, target, and proxy system types with configurable transformations and scheduling.

Key Concepts

  • Source systems — read users/groups from (e.g., SAP SuccessFactors, Azure AD, SAP S/4HANA Cloud)
  • Target systems — write users/groups to (e.g., IAS tenant, SAP BTP XSUAA, SAP Analytics Cloud)
  • Proxy systems — hybrid scenarios where IPS reads from one system and writes through another
  • Transformations — JSON-based attribute mappings between source and target schemas
  • Jobs — scheduled or on-demand provisioning runs (full or delta read)
  • Real-time provisioning — immediate entity propagation from source to target

For details, see references/identity-provisioning.md.

Authorization Management (AMS)

AMS enables policy-based, instance-level authorization for BTP applications. Developers define authorization policies in Data Control Language (DCL) — an SQL-like language — and deploy them with the application. Administrators refine policies in the IAS admin console.

Policy Lifecycle

1. Developer defines policies in DCL and deploys with the application 2. Base policies appear in the IAS admin console under Authorization Policies 3. Administrator creates custom policies (copies of base) with refined restrictions 4. Administrator assigns policies to users via groups

DCL Example

DEFINE POLICY SalesOrderAccess
  AS (SELECT FROM SalesOrder
      WHERE buyer = CONTEXT('userIdentityLogonName')
      OR region = CONTEXT('userAttributes.region'));

For details, see references/authorization-management.md.

XSUAA to IAS Migration

SAP is migrating BTP authentication from XSUAA (SAP Authorization and Trust Management Service) to Cloud Identity Services. The recommended posture:

  • New BTP applications: Use the Identity service (BTP service) + IAS. The Identity service automates OIDC application creation in IAS.
  • Existing XSUAA applications: Coexistence is supported. Migration is incremental — SAP recommends migrating authentication to IAS while keeping XSUAA for backward compatibility.
  • Authorization: SAP is replacing XSUAA scope-based authorization with AMS policy-based authorization for new applications. Existing role-collection patterns remain supported.

For the full migration guide, see references/xsuaa-to-ias-migration.md.

Trust Configuration

Trust between BTP subaccounts and IAS is established automatically when using the Identity service. For manual configurations:

  • SAML 2.0: Upload SP metadata XML to the IAS application trust configuration
  • OIDC: Configure redirect URIs, post-logout URIs, and client authentication

BTP Subaccount Trust

In the BTP cockpit, under Security > Trust Configuration, the IAS tenant appears after establishing the service binding. The Identity service creates the trust automatically.

For details, see references/troubleshooting.md and references/app-integration-patterns.md.

Common Errors and Solutions

ErrorCauseSolution
Invalid redirect URIRedirect URI in IAS app doesn't match the approuter callback URLAdd the exact URI (including protocol and trailing slash) in IAS app > Trust > Redirect URIs
Token audience mismatchToken aud claim doesn't include the expected client IDVerify the application's client ID matches the one in IAS; check the Identity service binding
Trust not establishedBTP subaccount has no trust to the IAS tenantRe-bind the Identity service instance or manually add IAS as trust configuration in BTP cockpit
Missing role collectionsUser has no roles assigned in BTPAssign role collections in BTP cockpit > Security > Role Collections, or configure AMS policies
401 on service-to-service callClient credentials invalid or missingRegenerate client secret/certificate; verify binding credentials
SAML assertion expiredClock drift between IdP and IASSynchronize system clocks; check IAS tenant SAML settings
Provisioning job failedSource/target system connection issueCheck system properties, certificates, and connectivity in IPS admin console
Issuer mismatch in tokenIAS tenant URL changed or wrong tenantVerify the iss claim matches the IAS tenant URL configured in the BTP trust

Bundled Resources

1. references/identity-authentication.md — IAS app registration, OIDC/SAML configuration, corporate IdP federation, conditional authentication, user store 2. references/identity-provisioning.md — IPS source/target/proxy systems, jobs, transformations, real-time provisioning, troubleshooting 3. references/authorization-management.md — AMS policy language (DCL), policy lifecycle, CAP/BTP integration, instance-based authorization 4. references/xsuaa-to-ias-migration.md — XSUAA vs IAS decision guide, coexistence, migration steps, role-collection mapping 5. references/app-integration-patterns.md — Approuter + IAS, CAP + IAS/AMS, SAPUI5 frontends, mTLS/certificate auth for service-to-service 6. references/troubleshooting.md — Trust errors, token validation failures, audience/issuer mismatches, SAML vs OIDC pitfalls

Documentation Links

Related skills

Securitycomplianceappsec

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.