sap-btp-business-application-studio
This skill provides comprehensive guidance for SAP Business Application Studio (BAS), the cloud-based IDE on SAP BTP built on Code-OSS. Use when setting up BAS subscriptions, creating dev spaces, connecting to external systems, deploying MTA applications, troubleshooting connectivity issues, managing Git repositories, configuring runtime versions, or using the layout editor. Keywords: SAP Business Application Studio, BAS, SAP BTP, dev space, Cloud Foundry, MTA, multitarget application, SAP Fiori, CAP, HANA, destination, WebIDEEnabled, Cloud Connector, Service Center, Storyboard, Layout Editor, ABAP, OData, subscription, entitlements, role collection, Business_Application_Studio_Developer, Git, clone, push, pull, Gerrit, PAT, OAuth, asdf, runtime, Node.js, Java, Python, Task Explorer, CI/CD, Yeoman, generator, template wizard, mbt, mtar, debugging, breakpoint
What this skill does
# SAP Business Application Studio ## Table of Contents - [Overview](#overview) - [Quick Decision Tree](#quick-decision-tree) - [Setup Checklist](#setup-checklist) - [Dev Space Types](#dev-space-types) - [Service Plans](#service-plans) - [Connectivity](#connectivity) - [Build & Deploy](#build--deploy) - [Roles & Authorization](#roles--authorization) - [Common Issues](#common-issues) - [Keyboard Shortcuts](#keyboard-shortcuts) - [Security Recommendations](#security-recommendations) - [Reference Files](#reference-files) - [Templates](#templates) - [Bundled Resources](#bundled-resources) - [Documentation Links](#documentation-links) ## Overview SAP Business Application Studio is a cloud-based IDE on SAP BTP built on Code-OSS (VS Code foundation). It provides tailored dev spaces for SAP Fiori, CAP, HANA, and mobile development with pre-installed tools and runtimes. **Architecture**: Multi-cloud SaaS (AWS, Azure, GCP) with isolated dev spaces functioning as Developer Virtual Appliances. ## Quick Decision Tree **Setting up BAS?** → See [Setup Checklist](#setup-checklist) **Creating a dev space?** → See [Dev Space Types](#dev-space-types) **Connecting to external systems?** → See [Connectivity](#connectivity) **Deploying applications?** → See [Build & Deploy](#build--deploy) **Working with Git?** → See `references/git-operations.md` **Project creation/development?** → See `references/development-workflow.md` **Service Center/Extensions?** → See `references/service-center-and-tools.md` **Troubleshooting?** → See `references/connectivity-guide.md` --- ## Setup Checklist ### Prerequisites - SAP BTP global account - Subaccount in Cloud Foundry environment ### Steps 1. **Create Subaccount** - Select region based on [availability](https://help.sap.com/docs/bas/sap-business-application-studio/sap-business-application-studio-availability) 2. **Configure Entitlements** - Add SAP Business Application Studio service plan 3. **Subscribe** - Complete subscription in subaccount 4. **Assign Roles** - Add `Business_Application_Studio_Developer` role collection 5. **Optional: Configure IdP** - Set up assertion-based attribute mapping 6. **Optional: Connect Git** - Link to public or corporate repositories 7. **Optional: Create CF Spaces** - At least 1 space per development team For detailed setup: See `references/setup-checklist.md` --- ## Dev Space Types | Type | Purpose | Key Extensions | |------|---------|----------------| | **SAP Fiori** | Fiori apps (CF, ABAP Cloud, on-prem) | SAP Fiori Tools, SAPUI5 Layout Editor, MTA Tools | | **Full Stack Cloud Application** | CAP with Node.js/Java + Fiori | CAP Tools, CDS Graphical Modeler, Java Tools | | **Full-Stack Application Using Productivity Tools** | Low-code development | Productivity Tools, CAP Tools, Mobile Services | | **SAP HANA Native Application** | Native HANA apps, calculation views | HANA Tools, Calculation View Editor, SDI Tools | | **SAP Mobile Application** | iOS/Android with MDK | Mobile Services Tools, HTML5 Runner | | **SAP SME Business Application** | SME apps with Business Application Factory | SME programming model tools | | **Basic** | Minimal environment | SAP Basic Tools only | For extension details: See `references/dev-space-types.md` --- ## Service Plans | Plan | Dev Spaces | Running | Storage | Notes | |------|------------|---------|---------|-------| | **Standard** | 10 | 2 | 10 GB | Production development | | **Free** | 2 | 1 | 4 GB | Community support only, 2 deployments max | | **Trial** | 2 | 1 | 4 GB | 1-hour timeout, 30-day inactivity deletion | | **Build-Code** | Varies | Varies | Varies | Requires SAP Build Code subscription | For restrictions: See `references/service-plans.md` --- ## Connectivity ### Required Destination Properties ``` WebIDEEnabled = true HTML5.DynamicDestination = true ``` ### WebIDEUsage by System Type | System Type | WebIDEUsage Value | |-------------|-------------------| | ABAP System | `odata_abap,dev_abap` | | SAP Cloud for Customer | `odata_c4c` | | Service URL | `odata_gen` | | SAP Business Accelerator Hub | `apihub_sandbox` | ### Cloud Connector Requirements (On-Premise) 1. Virtual URL in Cloud Connector must match destination URL (host:port only) 2. Protocol must be HTTP 3. Grant access to required paths: - `/sap/opu/odata/` (OData services) - `/sap/bc/ui5_ui5/` (UI5 resources) - `/sap/bc/adt/` (ABAP Development Tools) - `/sap/bc/ui2/app_index/` (App index) For troubleshooting: See `references/connectivity-guide.md` --- ## Build & Deploy ### Prerequisites 1. Log into Cloud Foundry account 2. For HANA apps: Add "SAP HANA Cloud, SAP HANA Schemas & HDI Containers" entitlement 3. For Trial/Free: Add "SAP Build Work Zone, standard edition" + Launchpad_Admin role ### MTA Deployment ```bash # Build MTA archive mbt build # Deploy to Cloud Foundry cf deploy mta_archives/<app>.mtar ``` ### Key Tools - **MTA Editor**: Visual editing of `mta.yaml` - **Cloud Foundry CLI**: `cf` commands for deployment - **Cloud MTA Build Tool**: Generates `.mtar` files - **Task Explorer**: Execute build/deploy tasks --- ## Roles & Authorization | Role | Purpose | |------|---------| | **Developer** | `Business_Application_Studio_Developer` - Application development | | **Administrator** | Export/delete user data, restart dev spaces | | **Extension Deployer** | Create and deploy custom extensions | Assign via: SAP BTP Cockpit → Security → Role Collections --- ## Common Issues ### Dev Space Stuck in STARTING 1. Wait 5 minutes 2. If persists, start new dev space and restore via Git 3. Contact support with workspace ID (ws-id) ### Connectivity Failures 1. Verify destination in BTP Cockpit (WebIDEEnabled, HTML5.DynamicDestination) 2. Check Cloud Connector configuration 3. Run in terminal: `curl localhost:8887/reload` then `curl $H2O_URL/api/listDestinations -o dests.json` ### Storage/Inode Issues ```bash df -ih # Check inodes df -h # Check disk space ``` Remove cache folders and unnecessary files. ### HANA Connection Issues Configure SAP HANA Cloud to allow BAS IP addresses. See [Availability](https://help.sap.com/docs/bas/sap-business-application-studio/sap-business-application-studio-availability) for region IPs. --- ## Keyboard Shortcuts | Action | Shortcut | |--------|----------| | Command Palette | `F1` or `Cmd+Shift+P` | | Select parent control | `Ctrl+Click` | | Move control up | `Shift+Left Arrow` | | Move control down | `Shift+Right Arrow` | --- ## Security Recommendations - **BTP-BAS-0001**: Limit administrators with full management permissions - Use Personal Access Tokens (PATs) for Git authentication - Protect connections to external systems - Avoid personal data in source files when using Joule AI --- ## Reference Files - `references/dev-space-types.md` - Detailed dev space extensions and capabilities - `references/connectivity-guide.md` - Complete connectivity troubleshooting - `references/service-plans.md` - Plan restrictions and metering - `references/setup-checklist.md` - Detailed setup procedures - `references/git-operations.md` - Git commands, stash, authentication, Gerrit - `references/development-workflow.md` - Project creation, UI development, debugging, CI/CD - `references/service-center-and-tools.md` - Service providers, extensions, IDE features --- ## Bundled Resources ### Reference Documentation - `references/connectivity-guide.md` - Complete connectivity setup guide - `references/dev-space-types.md` - All dev space types and use cases - `references/git-operations.md` - Git integration and operations - `references/service-center-and-tools.md` - Service Center and tool management - `references/service-plans.md` - Service plans comparison and selection - `references/setup-checklist.md` - Complete setup checklist - `references/development-workflow.md` - Development workflow and best practices ### Templates - `templates/destination-config.md` - Destination configuration examples - `templates/dev-spac
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.