← ClaudeAtlas

btp-cloud-platformlisted

SAP BTP Cloud Platform — account hierarchy, entitlements, CLI tools, marketplace services, and platform navigation.
williamcorrea23/sap-router-skill · ★ 0 · API & Backend · score 69
Install: claude install-skill williamcorrea23/sap-router-skill
# SAP BTP Cloud Platform Core platform: account model, entitlements, service marketplace, and CLI tooling. ## Prerequisites - SAP BTP global account with at least one subaccount - Admin or member role on the target subaccount - `btp` CLI and `cf` CLI installed locally ## 1. Account Hierarchy ``` Global Account (contract-level) ├── Directory: DEV-DIR (organizational grouping) │ └── Subaccount: DEV │ ├── Entitlements (service quotas) │ ├── CF Org: dev / Space: dev │ ├── Service Instances (HANA, ABAP, Destination...) │ └── Subscriptions (Launchpad, Work Zone, Build) ├── Subaccount: PRD └── Directory: SHARED-DIR ``` ## 2. Log In with btp CLI (Account Level) ```bash btp login --url https://cockpit.btp.cloud.sap btp list accounts/subaccount btp list accounts/entitlement --subaccount DEV ``` ## 3. Assign Entitlements ```bash btp assign accounts/entitlement \ --to-subaccount DEV \ --for-service abap \ --plan standard \ --amount 1 ``` Entitlement = what services a subaccount CAN use (assigned from global account). Quota = how much of a plan can be provisioned. ## 4. Log In with cf CLI (Runtime Level) ```bash cf login -a https://api.cf.us10.hana.ondemand.com -o dev -s dev cf marketplace # list available services and plans cf services # list existing instances ``` ## 5. Create a Service Instance ```bash cf create-service abap standard my-abap-env cf create-service hana hana my-hana-db cf creat