/sap-hana-cloud-data-intelligence
Develops data processing pipelines, integrations, and machine learning scenarios in SAP Data Intelligence Cloud. Use when building graphs/pipelines with operators, integrating ABAP/S4HANA systems, creating replication flows, developing ML scenarios with JupyterLab, or using Data
$ npx -y skills add secondsky/sap-skills --skill sap-hana-cloud-data-intelligence --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/sap-hana-cloud-data-intelligence
Context preview
The summary Claude sees to decide when to auto-load this skill.
Develops data processing pipelines, integrations, and machine learning scenarios in SAP Data Intelligence Cloud. Use when building graphs/pipelines with operators, integrating ABAP/S4HANA systems, creating replication flows, developing ML scenarios with JupyterLab, or using Data
SKILL.md
sap-hana-cloud-data-intelligence.SKILL.mdname: sap-hana-cloud-data-intelligence
description: |
Develops data processing pipelines, integrations, and machine learning scenarios in SAP Data Intelligence Cloud. Use when building graphs/pipelines with operators, integrating ABAP/S4HANA systems, creating replication flows, developing ML scenarios with JupyterLab, or using Data Transformation Language functions. Covers Gen1/Gen2 operators, subengines (Python, Node.js, C++), structured data operators, and repository objects.
license: GPL-3.0
metadata:
maintainer: "Eduard Jiglau"
maintainer_email: "hello@sap-ai-skills.com"
website: "https://sap-ai-skills.com"
version: "2.4.1"
last_verified: "2025-11-27"
evidence_status: "stale_docs_only_pending_refresh"
SAP HANA Cloud Data Intelligence Skill
Related Skills
- **sap-hana-ml**: Use for Python ML client workflows that run against SAP HANA
- **sap-datasphere**: Use for Datasphere modeling, replication, and analytics data warehousing
- **sap-btp-connectivity**: Use for cloud-to-on-premise connection and destination prerequisites
- **sap-btp-integration-suite**: Use for integration scenarios that should move out of Data Intelligence pipelines
This skill provides documentation-audited guidance for developing with SAP Data Intelligence Cloud, including pipeline creation, operator development, data integration, and machine learning scenarios. The `last_verified` date is intentionally stale until product lifecycle status and live graph/runtime behavior are checked against primary sources.
Table of Contents
- [When to Use This Skill](#when-to-use-this-skill)
- [Core Concepts](#core-concepts)
- [Quick Start Patterns](#quick-start-patterns)
- [Common Tasks](#common-tasks)
- [Bundled Resources](#bundled-resources)
When to Use This Skill
Use this skill when:
- Creating or modifying data processing graphs/pipelines
- Developing custom operators (Gen1 or Gen2)
- Integrating ABAP-based SAP systems (S/4HANA, BW)
- Building replication flows for data movement
- Developing ML scenarios with ML Scenario Manager
- Working with JupyterLab in Data Intelligence
- Using Data Transformation Language (DTL) functions
- Configuring subengines (Python, Node.js, C++)
- Working with structured data operators
Common Issues
| Issue | First check | |-------|-------------| | Graph fails after operator change | Confirm all operators use the same generation and compatible subengine. | | ABAP/S4HANA connection fails | Verify Cloud Connector, destination, and credential configuration. | | Python or Node operator behaves differently in runtime | Check subengine version, package availability, and serialization boundaries. |
Core Concepts
Graphs (Pipelines)
Graphs are networks of operators connected via typed input/output ports for data transfer.
**Two Generations:**
- **Gen1 Operators**: Legacy operators, broad compatibility
- **Gen2 Operators**: Enhanced error recovery, state management, snapshots
**Critical Rule**: Graphs cannot mix Gen1 and Gen2 operators - choose one generation per graph.
**Gen2 Advantages:**
- Automatic error recovery with snapshots
- State management with periodic checkpoints
- Native multiplexing (one-to-many, many-to-one)
- Improved Python3 operator
Operators
Building blocks that process data within graphs. Each operator has:
- **Ports**: Typed input/output connections for data flow
- **Configuration**: Parameters that control behavior
- **Runtime**: Engine that executes the operator
**Operator Categories:** 1. Messaging (Kafka, MQTT, NATS) 2. Storage (Files, HDFS, S3, Azure, GCS) 3. Database (HANA, SAP BW, SQL) 4. Script (Python, JavaScript, R, Go) 5. Data Processing (Transform, Anonymize, Validate) 6. Machine Learning (TensorFlow, PyTorch, HANA ML) 7. Integration (OData, REST, SAP CPI) 8. Workflow (Pipeline, Data Workflow)
Subengines
Subengines enable operators to run on different runtimes within the same graph.
**Supported Subengines:**
- **ABAP**: For ABAP Pipeline Engine operators
- **Python 3.9**: For Python-based operators
- **Node.js**: For JavaScript-based operators
- **C++**: For high-performance native operators
**Key Benefit**: Connected operators on the same subengine run in a single OS process for optimal performance.
**Trade-off**: Cross-engine communication requires serialization/deserialization overhead.
Quick Start Patterns
Basic Graph Creation
1. Open SAP Data Intelligence Modeler
2. Create new graph
3. Add operators from repository
4. Connect operator ports (matching types)
5. Configure operator parameters
6. Validate graph
7. Execute and monitor
Replication Flow Pattern
1. Create replication flow in Modeler
2. Configure source connection (ABAP, HANA, etc.)
3. Configure target (HANA Cloud, S3, Kafka, etc.)
4. Add tasks with source objects
5. Define filters and mappings
6. Validate flow
7. Deploy to tenant repository
8. Run and monitor
**Delivery Guarantees:**
- Default: At-least-once (may have duplicates)
- With UPSERT to databases: Exactly-once
- For cloud storage: Use "Suppress Duplicates" option
ML Scenario Pattern
1. Open ML Scenario Manager from launchpad
2. Create new scenario
3. Add datasets (register data sources)
4. Create Jupyter notebooks for experiments
5. Build training pipelines
6. Track metrics with Metrics Explorer
7. Version scenario for reproducibility
8. Deploy model pipeline
Common Tasks
ABAP System Integration
For integrating ABAP-based SAP systems:
1. **Prerequisites**: Configure Cloud Connector for on-premise systems 2. **Connection Setup**: Create ABAP connection in Connection Management 3. **Metadata Access**: Use Metadata Explorer for object discovery 4. **Data Sources**: CDS Views, ODP (Operational Data Provisioning), Tables
**Reference**: See `references/abap-integration.md` for detailed setup.
Structured Data Processing
Use structured data operators for SQL-like transformations:
- **Data Transform**: Visual SQL editor
Read more
name: sap-hana-cloud-data-intelligence description: | Develops data processing pipelines, integrations, and machine learning scenarios in SAP Data Intelligence Cloud. Use when building graphs/pipelines with operators, integrating ABAP/S4HANA systems, creating replication flows, developing ML scenarios with JupyterLab, or using Data Transformation Language functions. Covers Gen1/Gen2 operators, subengines (Python, Node.js, C++), structured data operators, and repository objects. license: GPL-3.0 metadata: maintainer: "Eduard Jiglau" maintainer_email: "hello@sap-ai-skills.com" website: "https://sap-ai-skills.com" version: "2.4.1" last_verified: "2025-11-27" evidence_status: "stale_docs_only_pending_refresh"
SAP HANA Cloud Data Intelligence Skill
Related Skills
- **sap-hana-ml**: Use for Python ML client workflows that run against SAP HANA
- **sap-datasphere**: Use for Datasphere modeling, replication, and analytics data warehousing
- **sap-btp-connectivity**: Use for cloud-to-on-premise connection and destination prerequisites
- **sap-btp-integration-suite**: Use for integration scenarios that should move out of Data Intelligence pipelines
This skill provides documentation-audited guidance for developing with SAP Data Intelligence Cloud, including pipeline creation, operator development, data integration, and machine learning scenarios. The `last_verified` date is intentionally stale until product lifecycle status and live graph/runtime behavior are checked against primary sources.
Table of Contents
- [When to Use This Skill](#when-to-use-this-skill)
- [Core Concepts](#core-concepts)
- [Quick Start Patterns](#quick-start-patterns)
- [Common Tasks](#common-tasks)
- [Bundled Resources](#bundled-resources)
When to Use This Skill
Use this skill when:
- Creating or modifying data processing graphs/pipelines
- Developing custom operators (Gen1 or Gen2)
- Integrating ABAP-based SAP systems (S/4HANA, BW)
- Building replication flows for data movement
- Developing ML scenarios with ML Scenario Manager
- Working with JupyterLab in Data Intelligence
- Using Data Transformation Language (DTL) functions
- Configuring subengines (Python, Node.js, C++)
- Working with structured data operators
Common Issues
| Issue | First check | |-------|-------------| | Graph fails after operator change | Confirm all operators use the same generation and compatible subengine. | | ABAP/S4HANA connection fails | Verify Cloud Connector, destination, and credential configuration. | | Python or Node operator behaves differently in runtime | Check subengine version, package availability, and serialization boundaries. |
Core Concepts
Graphs (Pipelines)
Graphs are networks of operators connected via typed input/output ports for data transfer.
**Two Generations:**
- **Gen1 Operators**: Legacy operators, broad compatibility
- **Gen2 Operators**: Enhanced error recovery, state management, snapshots
**Critical Rule**: Graphs cannot mix Gen1 and Gen2 operators - choose one generation per graph.
**Gen2 Advantages:**
- Automatic error recovery with snapshots
- State management with periodic checkpoints
- Native multiplexing (one-to-many, many-to-one)
- Improved Python3 operator
Operators
Building blocks that process data within graphs. Each operator has:
- **Ports**: Typed input/output connections for data flow
- **Configuration**: Parameters that control behavior
- **Runtime**: Engine that executes the operator
**Operator Categories:** 1. Messaging (Kafka, MQTT, NATS) 2. Storage (Files, HDFS, S3, Azure, GCS) 3. Database (HANA, SAP BW, SQL) 4. Script (Python, JavaScript, R, Go) 5. Data Processing (Transform, Anonymize, Validate) 6. Machine Learning (TensorFlow, PyTorch, HANA ML) 7. Integration (OData, REST, SAP CPI) 8. Workflow (Pipeline, Data Workflow)
Subengines
Subengines enable operators to run on different runtimes within the same graph.
**Supported Subengines:**
- **ABAP**: For ABAP Pipeline Engine operators
- **Python 3.9**: For Python-based operators
- **Node.js**: For JavaScript-based operators
- **C++**: For high-performance native operators
**Key Benefit**: Connected operators on the same subengine run in a single OS process for optimal performance.
**Trade-off**: Cross-engine communication requires serialization/deserialization overhead.
Quick Start Patterns
Basic Graph Creation
1. Open SAP Data Intelligence Modeler 2. Create new graph 3. Add operators from repository 4. Connect operator ports (matching types) 5. Configure operator parameters 6. Validate graph 7. Execute and monitor
Replication Flow Pattern
1. Create replication flow in Modeler 2. Configure source connection (ABAP, HANA, etc.) 3. Configure target (HANA Cloud, S3, Kafka, etc.) 4. Add tasks with source objects 5. Define filters and mappings 6. Validate flow 7. Deploy to tenant repository 8. Run and monitor
**Delivery Guarantees:**
- Default: At-least-once (may have duplicates)
- With UPSERT to databases: Exactly-once
- For cloud storage: Use "Suppress Duplicates" option
ML Scenario Pattern
1. Open ML Scenario Manager from launchpad 2. Create new scenario 3. Add datasets (register data sources) 4. Create Jupyter notebooks for experiments 5. Build training pipelines 6. Track metrics with Metrics Explorer 7. Version scenario for reproducibility 8. Deploy model pipeline
Common Tasks
ABAP System Integration
For integrating ABAP-based SAP systems:
1. **Prerequisites**: Configure Cloud Connector for on-premise systems 2. **Connection Setup**: Create ABAP connection in Connection Management 3. **Metadata Access**: Use Metadata Explorer for object discovery 4. **Data Sources**: CDS Views, ODP (Operational Data Provisioning), Tables
**Reference**: See `references/abap-integration.md` for detailed setup.
Structured Data Processing
Use structured data operators for SQL-like transformations:
- **Data Transform**: Visual SQL editor
40 SAP development plugins with evidence-tracked verification SAP development plugins for AI coding assistants, with public-source or package-registry verification tracked where available.
Repo: secondsky/sap-skills
Other skills on sap-skills.
- /sap-abap-cds
Comprehensive SAP ABAP CDS (Core Data Services) reference for data modeling, view development, and semantic enrichment. Use when creating CDS views or view entities, defining data models with annotations, working with associations and cardinality, implementing input parameters,
Open skill - /sap-abap
Comprehensive ABAP development skill for SAP systems. Use when writing ABAP code, working with internal tables, structures, ABAP SQL, object-oriented programming, RAP (RESTful Application Programming Model), CDS views, EML statements, ABAP Cloud development, string processing,
Open skill - /sap-ai-core
Guides development with SAP AI Core and SAP AI Launchpad for enterprise AI/ML workloads on SAP BTP. Use when: deploying generative AI models, building orchestration workflows with templating/filtering/grounding, implementing RAG with vector databases, managing ML training
Open skill - /sap-api-policy
Evidence-based assessment of whether an SAP API/interface usage scenario aligns with the SAP API Policy (v.4.2026a). Use whenever someone asks whether a way of calling SAP is allowed/compliant — e.g. Published API vs internal/private/"confidential" API status, "Documented Use",
Open skill - /sap-api-style
This skill provides comprehensive guidance for documenting SAP APIs following the SAP API Style Guide standards. It should be used when creating or reviewing API documentation for REST, OData, Java, JavaScript, .NET, or C/C++ APIs. The skill covers naming conventions,
Open skill - /sap-browser-automation
Use when an agent must inspect or operate an authenticated SAP web UI through an in-app Browser, Microsoft Edge CDP, or an existing Playwright client, especially when SAP SSO reuse, isolated Edge profiles, deterministic target selection, screenshots, or browser bootstrap
Open skill

