TopRank Skills

Home / Claw Skills / Intégration d'API / Sap Integration
Official OpenClaw rules 36%

Sap Integration

SAP Integration Skill

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Sap Integration 技能。 若已安装,则直接安装 Sap Integration 技能。

Overview

Skill Key
highlander89/sap-integration
Author
highlander89
Source Repo
openclaw/skills
Version
-
Source Path
skills/highlander89/sap-integration
Latest Commit SHA
11f96b8f7fad9d26ff4873e88dad045155f24991

Extracted Content

SKILL.md excerpt

# SAP Integration Skill

Enterprise SAP system integration and automation capability built by SAPCONET experts.

## Core Capabilities

### Data Operations
- **Extract SAP data** via RFC, BAPI, or OData services
- **Generate reports** from SAP tables with proper joins and filters
- **Export to Excel/CSV** with formatting and pivot analysis
- **Real-time data sync** between SAP and external systems

### Development Support
- **ABAP code generation** for common patterns (ALV reports, BAPIs, enhancements)
- **SAP table analysis** with field descriptions and relationships
- **Custom transaction creation** with proper authorization checks
- **Performance optimization** queries and recommendations

### Integration Patterns
- **REST API wrappers** for SAP functions
- **Middleware connectivity** via PI/PO or CPI
- **Cloud integration** with SAP Business Technology Platform
- **Legacy system bridging** for modernization projects

## Quick Start Examples

### Data Extraction
```abap
" Extract customer master data
SELECT kunnr, name1, ort01, land1 
FROM kna1 
INTO TABLE lt_customers 
WHERE erdat >= sy-datum - 30.
```

### BAPI Integration
```python
# Python RFC connection
import pyrfc
conn = pyrfc.Connection(...)
result = conn.call('BAPI_CUSTOMER_GETDETAIL2', 
                  CUSTOMERNO='0000001000')
```

## Advanced Workflows

### SAP HANA Integration
For complex analytics and real-time processing:
- See [references/hana-integration.md](references/hana-integration.md)

### S/4HANA Migration Support  
For brownfield and greenfield transitions:
- See [references/s4hana-migration.md](references/s4hana-migration.md)

### Custom Enhancement Framework
For user exits, BADIs, and enhancement spots:
- See [references/enhancement-framework.md](references/enhancement-framework.md)

## Authentication & Security

All SAP connections require proper authentication:
- **Username/password** for basic RFC
- **X.509 certificates** for secure connections  
- **OAuth 2.0** for cloud API access
-...

Related Claw Skills