btp-abap-environment — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited btp-abap-environment (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Guide for setting up and developing in the SAP BTP ABAP Environment (Steampunk).
| Requirement | Description |
|---|---|
| SAP BTP Account | Global account with entitlements for ABAP Environment |
| Subaccount | Cloud Foundry-enabled subaccount |
| ADT | Eclipse with ABAP Development Tools installed |
| User | Platform user with Space Developer role |
| Entitlements | abap/standard or abap/saas_oem service plan |
my-abap-instance{
"admin_email": "[email protected]",
"description": "Development ABAP System",
"is_development_allowed": true,
"sapsystemname": "DEV",
"size_of_runtime": 1,
"size_of_persistence": 4
}SAP BTP Subaccount
└── Cloud Foundry Space
└── ABAP Environment Service Instance
├── ABAP System (development/production)
├── Software Components (ZLOCAL, custom)
├── Communication Arrangements (integrations)
└── Business Services (OData, RFC)| Component | Description |
|---|---|
ZLOCAL | Local development — not transportable (like $TMP) |
| Custom | Transportable components — managed via gCTS or Manage Software Components app |
+ button)Z_MY_COMPONENTZ_MY_COMPONENT (Software Component)
└── Z_MY_APP (Structure Package)
├── Z_MY_APP_MODEL (Sub-package: CDS views, database tables)
├── Z_MY_APP_BIZ (Sub-package: business logic, RAP BOs)
└── Z_MY_APP_SRV (Sub-package: service definitions, bindings)| Artifact | Purpose |
|---|---|
| Communication Scenario | Template defining inbound/outbound services and auth methods |
| Communication System | Represents the external system (host, port, credentials) |
| Communication Arrangement | Binds scenario + system + user, activating the integration |
| Communication User | Technical user for inbound communication |
"Defined via ADT: New → Other → Communication Scenario
"Name: Z_MY_COMM_SCENARIOCommunication scenario definition (in ADT):
| Property | Value |
|---|---|
| Scenario ID | Z_MY_COMM_SCENARIO |
| Scenario Type | Managed by Customer |
| Inbound Services | List of inbound OData services |
| Outbound Services | List of outbound HTTP services |
| Allowed Auth Methods | Basic, OAuth 2.0, x.509 |
"Get HTTP destination from communication arrangement
DATA(lo_dest) = cl_http_destination_provider=>create_by_comm_arrangement(
comm_scenario = 'Z_MY_COMM_SCENARIO'
service_id = 'Z_MY_OUTBOUND_SERVICE' ).
"Create HTTP client
DATA(lo_client) = cl_web_http_client_manager=>create_by_http_destination( lo_dest ).
"Execute request
DATA(lo_request) = lo_client->get_http_request( ).
lo_request->set_uri_path( '/api/resource' ).
lo_request->set_header_field( i_name = 'Content-Type' i_value = 'application/json' ).
DATA(lo_response) = lo_client->execute( if_web_http_client=>get ).
DATA(lv_status) = lo_response->get_status( ).
DATA(lv_body) = lo_response->get_text( ).
lo_client->close( ).IAM App → Business Catalog → Business Role → Business UserADT: New → Other → IAM App
Name: Z_MY_APP_IAM
Service Binding: Z_MY_SERVICE_BINDINGQuick steps to create a minimal RAP-based Fiori app:
| App | Purpose |
|---|---|
| Manage Software Components | Create, clone, pull software components |
| Communication Arrangements | Configure inbound/outbound integrations |
| Communication Systems | Register external systems |
| Maintain Business Roles | Create and assign roles |
| Application Jobs | Schedule and monitor background jobs |
| Custom Business Configurations | Maintain configuration tables |
When helping with BTP ABAP Environment topics, structure responses as:
## BTP ABAP Environment Guidance
### Phase
- [Setup / Development / Integration / Deployment]
### Steps
[Step-by-step instructions]
### Configuration
[Relevant settings or code]~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.