SAP ECC vs S/4HANA Integration Capabilities: APIs, Middleware, Cloud Readiness & ECC EOL
Type: ERP Integration
System: SAP ECC 6.0 (EHP 0-8) vs SAP S/4HANA (2023-2025)
Confidence: 0.88
Sources: 7
Verified: 2026-03-02
Freshness: evolving
TL;DR
- Bottom line: S/4HANA replaces ECC's proprietary RFC/BAPI/IDoc interfaces with an API-first architecture using OData, REST, and SOAP — plan integration rewrites during migration, not after.
- Key limit: ECC mainstream support ends 2027-12-31 (EHP 6-8); extended maintenance available until 2030 at ~2% premium — after that, no security patches.
- Watch out for: S/4HANA's Simplification List blacklists hundreds of ECC BAPIs — existing integrations calling deprecated BAPIs will break silently or throw runtime errors after migration.
- Best for: Organizations comparing integration architectures pre-migration, architects planning interface remediation, and teams deciding on middleware strategy (PI/PO vs CPI/BTP).
- Authentication: S/4HANA supports OAuth 2.0, X.509 certificates, SAML, and basic auth; ECC primarily uses SNC for RFC and WS-Security for SOAP.
System Profile
This card compares the integration capabilities of SAP ECC 6.0 (all Enhancement Packages) and SAP S/4HANA (On-Premise, Cloud, and Private Cloud editions). The comparison covers the full spectrum of integration interfaces — from legacy RFC/BAPI/IDoc in ECC to modern OData/REST/Events in S/4HANA — with particular focus on what changes during migration and the middleware transition from PI/PO to SAP Integration Suite.
| System | Role | API Surface | Deployment |
| SAP ECC 6.0 (EHP 0-8) | Legacy ERP — source system during migration | RFC, BAPI, IDoc, SOAP Web Services | On-Premise |
| SAP S/4HANA (2023-2025) | Target ERP — API-first architecture | OData v2/v4, REST, SOAP, RFC (legacy), Business Events | Cloud / On-Premise / Hybrid |
| SAP PI/PO | Legacy middleware for ECC | IDoc, RFC, SOAP, File adapters | On-Premise |
| SAP Integration Suite (CPI) | Strategic middleware for S/4HANA | OData, REST, SOAP, SFTP, HTTPS | Cloud |
API Surfaces & Capabilities
SAP ECC Integration Interfaces
| API Surface | Protocol | Best For | Real-time? | Bulk? | Status in S/4HANA |
| BAPI (RFC-enabled function modules) | RFC (proprietary) | Business object CRUD, master data | Yes | No | Partially deprecated |
| IDoc (Intermediate Documents) | tRFC/qRFC, File, SOAP | Async document exchange, B2B, EDI | No (async) | Yes | Reduced count, modified structures |
| SOAP Web Services (ABAP Proxies) | HTTPS/XML via SOAMANAGER | Structured request-response | Yes | No | Still supported, not strategic |
| RFC (Remote Function Call) | Proprietary SAP protocol | Direct function calls | Yes (sRFC) | No | Supported but discouraged |
| File/FTP | Flat file exchange | Batch data loads | No | Yes | Replaced by OData batch or SOAP |
SAP S/4HANA Integration Interfaces
| API Surface | Protocol | Best For | Real-time? | Bulk? | Status |
| OData v2/v4 | HTTPS/JSON or XML | Standard CRUD, business documents | Yes | Limited ($batch) | Strategic — primary API |
| SAP Reliable Messaging | SOAP with QoS metadata | Async/batch, B2B (IDoc replacement) | No (async) | Yes | Strategic — ExactlyOnce |
| Business Events | MQTT/AMQP via Event Mesh | Event-driven, CDC, notifications | Yes (push) | N/A | Strategic — since 2020 |
| REST APIs | HTTPS/JSON | Custom scenarios, lightweight | Yes | No | Growing catalog |
| SOAP Web Services | HTTPS/XML | Legacy compatibility | Yes | No | Supported, declining |
| RFC/BAPI (legacy) | RFC proprietary | Backward compatibility only | Yes | No | Maintenance-only; blocked in Cloud |
Rate Limits & Quotas
Per-Request Limits
| Limit Type | SAP ECC | SAP S/4HANA | Notes |
| Max concurrent OData requests/client | N/A | 10 recommended | SAP recommendation to prevent server overload |
| OData $batch sub-requests | N/A | ~1,000 per batch | Varies by system configuration |
| RFC concurrent connections | Configurable (sm59) | Configurable (sm59, on-prem only) | Typically 10-100 per destination |
| IDoc packet size | Configurable (50-500) | Reduced IDoc availability | Check WE20/WE21 settings |
| SOAP message size | Configurable in SOAMANAGER | Configurable | Default ~10 MB, adjustable |
| OData response page size | N/A | 1,000 records default ($top) | Use $skiptoken for pagination |
Rolling / Daily Limits
| Limit Type | SAP ECC | SAP S/4HANA | Notes |
| API call quotas | No hard daily limit (on-prem) | Cloud: tenant-specific fair use; On-prem: no hard limit | S/4HANA Cloud enforces throttling |
| Work process limits | Configurable (dialog, background, update) | Same architecture (on-prem); managed (cloud) | Exhausting work processes blocks ALL users |
| Background job scheduling | Unlimited (resource-constrained) | Cloud: limited slots; On-prem: unlimited | Plan batch windows carefully in Cloud |
| Event Mesh throughput | N/A | Depends on service plan | Lite: limited; Premium: millions/month |
Transaction / Dialog Limits
| Limit Type | Per-Transaction Value | Notes |
| Dialog step time limit | 600s (configurable via rdisp/max_wprun_time) | Applies to both ECC and S/4HANA on-prem |
| Update task timeout | 600s default | Long-running updates should use background processing |
| RFC timeout | Configurable per destination (sm59) | Typically 300s for synchronous RFC |
| Memory per dialog step | Configurable (abap/heap_area_dia) | S/4HANA HANA in-memory reduces need for large buffers |
Authentication
| Flow | SAP ECC | SAP S/4HANA | Use When |
| SNC (Secure Network Communications) | Primary for RFC/BAPI | Supported (on-prem) | Server-to-server RFC connections |
| Basic Authentication | SOAP Web Services | OData, REST, SOAP | Development/testing only |
| X.509 Client Certificates | SOAP via ICM | OData, REST, SOAP | Server-to-server, highest security |
| OAuth 2.0 | Not native (requires proxy) | Native (Cloud & on-prem 2021+) | Cloud integrations, third-party apps |
| SAML 2.0 | Limited (SSO only) | Full support | User-context browser-based integrations |
| SAP API Key | N/A | SAP API Business Hub sandbox | Testing APIs in sandbox |
Authentication Gotchas
- SNC requires SAP Cryptographic Library (CommonCryptoLib) on both client and server — missing library causes silent connection failures. [src3]
- OAuth 2.0 on S/4HANA On-Premise requires SAP NetWeaver Gateway OAuth configuration (transaction SOAUTH) — NOT enabled by default. [src1]
- Basic auth credentials for RFC destinations (sm59) are stored in clear text — use SNC or X.509 in production. [src3]
- S/4HANA Cloud uses SAP BTP destination service for credential management — direct system credentials not exposed. [src5]
Constraints
- SAP ECC mainstream support ends 2027-12-31 for EHP 6-8; EHP 0-5 support already ended 2025-12-31.
- S/4HANA Cloud blocks RFC, BAPI, and IDoc natively — only OData, SOAP, and REST APIs are available.
- S/4HANA Simplification List deprecates hundreds of ECC BAPIs, tables, and function modules — run ATC checks BEFORE migration.
- SAP PI/PO is in maintenance-only mode — no new features. Use SAP Integration Suite (CPI) for new projects.
- S/4HANA's simplified data model (Universal Journal ACDOCA) changes field mappings for financial integrations.
- Extended maintenance for ECC (2028-2030) costs ~2% additional annually and provides only break-fix support.
- Event Mesh (Business Events) requires separate BTP subscription and licensing.
Integration Pattern Decision Tree
START — Migrating SAP ECC to S/4HANA integration
├── What deployment target?
│ ├── S/4HANA Cloud
│ │ ├── Current integration uses RFC/BAPI?
│ │ │ ├── YES → MUST rewrite to OData or SOAP (RFC blocked in Cloud)
│ │ │ └── NO → Evaluate OData equivalent on SAP API Business Hub
│ │ ├── Current integration uses IDoc?
│ │ │ ├── YES → Replace with SAP Reliable Messaging or OData
│ │ │ └── NO → Use OData for sync, Business Events for async
│ │ └── Middleware?
│ │ └── SAP Integration Suite (CPI) — only option for Cloud
│ ├── S/4HANA On-Premise
│ │ ├── Current integration uses RFC/BAPI?
│ │ │ ├── BAPI in Simplification List? → Rewrite to OData
│ │ │ └── BAPI still supported? → Works, but plan OData migration
│ │ ├── Current integration uses IDoc?
│ │ │ ├── IDoc structure changed? → Update mappings
│ │ │ └── IDoc unchanged? → Works, but OData is strategic
│ │ └── Middleware?
│ │ ├── PI/PO exists? → Continue short-term, plan CPI migration
│ │ └── No middleware? → Implement CPI for new integrations
│ └── Hybrid (ECC + S/4HANA coexistence)
│ └── Use CPI to bridge ECC (RFC/IDoc) ↔ S/4HANA (OData/Events)
├── Integration pattern needed?
│ ├── Real-time sync → OData v2/v4 (S/4HANA) or BAPI/RFC (ECC)
│ ├── Batch/bulk → SAP Reliable Messaging or IDoc packets (ECC)
│ ├── Event-driven → Business Events + Event Mesh (S/4HANA only)
│ └── File-based → SFTP via CPI (both systems)
└── Error tolerance?
├── ExactlyOnce required → SAP Reliable Messaging
└── Best-effort → OData with retry logic
Quick Reference
| Capability | SAP ECC 6.0 | S/4HANA On-Premise | S/4HANA Cloud | Winner |
| Primary API protocol | RFC (proprietary) | OData v2/v4 (REST) | OData v2/v4 (REST) | S/4HANA |
| API catalog | No central catalog | SAP API Business Hub | SAP API Business Hub | S/4HANA |
| Async messaging | IDoc + ALE | SAP RM + Business Events | SAP RM + Business Events | S/4HANA |
| Event-driven | Not native | Business Events (add-on) | Business Events (native) | S/4HANA Cloud |
| Bulk data operations | IDoc packets, BDC, LSMW | OData $batch, SAP RM | OData $batch, SAP RM | Comparable |
| Middleware (strategic) | PI/PO (on-prem) | CPI / Integration Suite | CPI (required) | S/4HANA |
| Authentication | SNC, basic, WS-Security | OAuth 2.0, X.509, SAML | OAuth 2.0, X.509, SAML | S/4HANA |
| Cloud-native readiness | Poor | Good | Excellent | S/4HANA Cloud |
| Third-party integration ease | Difficult | Moderate | Good | S/4HANA Cloud |
| Legacy compatibility | Full (native) | High | Low (RFC/IDoc blocked) | ECC |
| Real-time analytics | Limited | CDS views + OData | CDS views + OData | S/4HANA |
| API versioning | N/A | Release-based | Continuous updates | S/4HANA Cloud |
Step-by-Step Integration Guide
1. Audit existing ECC integrations
Run the ABAP Test Cockpit (ATC) to scan all custom interfaces for deprecated objects before migration. [src1]
* In ECC transaction SE38 or ATC:
* Run SAP S/4HANA readiness check (transaction /SDF/RC_START_CHECK)
* This identifies:
* - Deprecated BAPIs and function modules
* - Modified IDoc structures
* - Tables removed or merged in S/4HANA (e.g., BSEG → ACDOCA)
* Export results to spreadsheet for interface remediation planning
Verify: Transaction /SDF/RC_START_CHECK → Report shows list of affected custom objects with severity ratings.
2. Map ECC interfaces to S/4HANA equivalents
For each deprecated BAPI/RFC, find the OData replacement on SAP API Business Hub. [src2]
# Search SAP API Business Hub for replacement APIs
# URL: https://api.sap.com/
# Filter by: Product = SAP S/4HANA, API Type = OData V2 or V4
# Example: BAPI_SALESORDER_CREATEFROMDAT2 → Sales Order (A2X) OData V4 API
# Example: BAPI_MATERIAL_GETLIST → Product Master OData API
Verify: Each ECC interface has a documented S/4HANA equivalent or explicit "rewrite required" flag.
3. Configure OData service in S/4HANA
Activate and test OData services via SAP Gateway. [src3]
* Transaction /IWFND/MAINT_SERVICE — activate OData service
* 1. Search for the API service name (e.g., API_SALES_ORDER_SRV)
* 2. Click "Add Service" and assign to system alias
* 3. Test via /IWFND/GW_CLIENT:
* GET /sap/opu/odata/sap/API_SALES_ORDER_SRV/$metadata
* → Should return EDMX schema definition
Verify: GET /sap/opu/odata/sap/{SERVICE_NAME}/$metadata → returns 200 with EDMX XML schema.
4. Set up SAP Integration Suite (CPI) connection
Configure connectivity from CPI to S/4HANA for middleware-based integrations. [src4]
# In SAP BTP Cockpit:
# 1. Subscribe to Integration Suite
# 2. Create HTTP Destination pointing to S/4HANA
# 3. In CPI Design workspace, create iFlow
# 4. Deploy and monitor via Operations view
Verify: CPI iFlow deployment succeeds → test message returns 200 from S/4HANA OData endpoint.
Code Examples
Python: Query S/4HANA OData API with OAuth 2.0
# Input: S/4HANA OData endpoint URL, OAuth client credentials
# Output: JSON response with business documents
import requests # requests==2.31.0
token_url = "https://{s4hana-host}/sap/bc/sec/oauth2/token"
token_resp = requests.post(token_url, data={
"grant_type": "client_credentials",
"client_id": "YOUR_CLIENT_ID",
"client_secret": "YOUR_CLIENT_SECRET"
})
access_token = token_resp.json()["access_token"]
odata_url = "https://{s4hana-host}/sap/opu/odata/sap/API_SALES_ORDER_SRV/A_SalesOrder"
headers = {"Authorization": f"Bearer {access_token}", "Accept": "application/json"}
resp = requests.get(odata_url, headers=headers, params={"$top": 100, "$format": "json"})
resp.raise_for_status()
orders = resp.json()["d"]["results"]
JavaScript/Node.js: Call ECC BAPI via RFC (legacy)
// Input: SAP ECC RFC destination config, material number
// Output: Material details from BAPI_MATERIAL_GET_DETAIL
// Requires: [email protected]
const noderfc = require("node-rfc");
const client = new noderfc.Client({
ashost: "ecc-server.example.com", sysnr: "00",
client: "100", user: "RFC_USER", passwd: "password", lang: "EN"
});
async function getMaterial(materialNumber) {
await client.open();
const result = await client.call("BAPI_MATERIAL_GET_DETAIL", {
MATERIAL: materialNumber, PLANT: "1000"
});
await client.close();
return result.MATERIAL_GENERAL_DATA;
}
// Note: Check Simplification List — some material BAPIs are deprecated
cURL: Test S/4HANA OData service connectivity
# Input: S/4HANA host, user credentials (basic auth for testing)
# Output: OData metadata document
curl -X GET \
"https://{s4hana-host}/sap/opu/odata/sap/API_SALES_ORDER_SRV/\$metadata" \
-H "Authorization: Basic $(echo -n 'USER:PASS' | base64)" \
-H "Accept: application/xml"
# Query first 5 sales orders
curl -X GET \
"https://{s4hana-host}/sap/opu/odata/sap/API_SALES_ORDER_SRV/A_SalesOrder?\$top=5&\$format=json" \
-H "Authorization: Basic $(echo -n 'USER:PASS' | base64)" \
-H "Accept: application/json"
Data Mapping
Key Field Mapping Changes (ECC to S/4HANA)
| ECC Table/Field | S/4HANA Equivalent | Type | Transform | Gotcha |
| BSEG (FI line items) | ACDOCA (Universal Journal) | Merged table | Join BKPF+BSEG → single ACDOCA | BSEG is compatibility view — DO NOT write to it |
| BKPF (FI doc header) | ACDOCA | Merged table | Header fields merged into line items | Document number format may differ |
| COEP (CO line items) | ACDOCA | Merged table | CO/FI unified in Universal Journal | Separate CO queries no longer needed |
| KONV (pricing conditions) | PRCD_ELEMENTS | Renamed/restructured | Field names changed | Custom pricing condition interfaces break |
| VBAK/VBAP (sales docs) | Still exists (simplified) | Minor changes | Some fields removed | Check Simplification List |
| KNA1 (customer master) | BUT000 (Business Partner) | Replaced | Customer→BP migration via CVI | Customer number ≠ BP number by default |
| LFA1 (vendor master) | BUT000 (Business Partner) | Replaced | Vendor→BP migration via CVI | Vendor and customer can share one BP |
| MARA/MARC (material master) | Still exists (simplified) | Minor changes | Some fields removed/relocated | Material number extended to 40 chars |
Data Type Gotchas
- Customer/vendor master data merge into Business Partner (BUT000) — write operations MUST use BP APIs. [src1]
- Financial interfaces reading BSEG directly suffer 10-100x performance degradation — rewrite to use ACDOCA with CDS views. [src1]
- Material number field length increases from 18 to 40 characters — check all fixed-length string handling. [src2]
- Currency amounts in OData use Edm.Decimal — ECC RFC returns packed numbers (BCD) — conversion needed. [src3]
Error Handling & Failure Points
Common Error Codes
| Code | Meaning | ECC Context | S/4HANA Context | Resolution |
| RFC_COMMUNICATION_FAILURE | RFC connection lost | Network/firewall | Same (on-prem only) | Check sm59, verify ports 33XX |
| RFC_SYSTEM_FAILURE | ABAP runtime error | BAPI internal error | Same | Check ST22 for short dump |
| HTTP 401 | Unauthorized | Basic auth failed | OAuth token expired | Refresh token; check SOAUTH |
| HTTP 403 | Forbidden | ICM authorization | Missing OData auth | Assign S_SERVICE to integration user |
| HTTP 405 | Method Not Allowed | N/A | Operation not supported | Check $metadata for allowed ops |
| HTTP 429 | Too Many Requests | N/A | Cloud throttling active | Exponential backoff; concurrency <10 |
| IDOC_STATUS_03 | IDoc passed to app | Success | Same | No action needed |
| IDOC_STATUS_51 | Application error | Business rule violation | + structure changes | Check BD87; verify IDoc structure |
Failure Points in Production
- Deprecated BAPI calls: Blacklisted BAPIs throw CX_SY_DYN_CALL_ILLEGAL_FUNC or return empty results silently. Fix:
Run ATC readiness check pre-migration. [src1]
- IDoc structure mismatch: Changed segments cause data loss in middleware mappings. Fix:
Re-import IDoc metadata post-migration; compare with WE60. [src2]
- Universal Journal performance: BSEG compatibility views suffer 10-100x degradation. Fix:
Rewrite to CDS views exposed as OData. [src1]
- OAuth token expiration: Batch jobs fail mid-execution when tokens expire. Fix:
Implement token refresh before each API call batch. [src5]
- Business Partner number mismatch: BP numbers may not match old customer/vendor numbers. Fix:
Use CVI mapping tables (CVIMAP). [src1]
- PI/PO channel timeouts: Communication channels need reconfiguration after S/4HANA upgrade. Fix:
Update sm59 destinations; re-register adapters; test via SXI_MONITOR. [src4]
Anti-Patterns
Wrong: Direct table reads via RFC_READ_TABLE on S/4HANA
* BAD — Reading BSEG directly via RFC_READ_TABLE
* In S/4HANA BSEG is a compatibility view over ACDOCA
* Result: Timeout or extreme memory consumption
CALL FUNCTION 'RFC_READ_TABLE'
EXPORTING
QUERY_TABLE = 'BSEG'
DELIMITER = '|'
TABLES
OPTIONS = lt_options
DATA = lt_data.
Correct: Use CDS views exposed as OData in S/4HANA
* GOOD — Use CDS view I_JournalEntry via OData
* Optimized for HANA, proper indexing, much faster
* GET /API_JOURNALENTRYITEMBASIC_SRV/A_JournalEntryItemBasic
* ?$filter=CompanyCode eq '1000'
* &$top=1000&$format=json
Wrong: Keeping PI/PO for all new S/4HANA integrations
// BAD — Building new integration flows on PI/PO
// PI/PO is maintenance-only — no new features, no cloud support
PI/PO iFlow: External System → RFC Adapter → S/4HANA BAPI
Correct: Use SAP Integration Suite (CPI) for new integrations
// GOOD — New integrations on CPI
// Cloud-native, continuously updated, pre-built S/4HANA adapters
CPI iFlow: External System → HTTPS → CPI → OData Adapter → S/4HANA
Wrong: Assuming all ECC BAPIs work unchanged in S/4HANA
# BAD — No pre-migration validation
def create_sales_order(conn):
result = conn.call("BAPI_SALESORDER_CREATEFROMDAT2", {...})
return result["SALESDOCUMENT"] # No deprecation check
Correct: Validate against Simplification List first
# GOOD — Use OData API (strategic) or validate BAPI first
def create_sales_order(conn, use_odata=True):
if use_odata:
resp = requests.post(
f"{S4_HOST}/sap/opu/odata/sap/API_SALES_ORDER_SRV/A_SalesOrder",
json={"SalesOrderType": "OR", ...},
headers={"Authorization": f"Bearer {token}"}
)
return resp.json()["d"]["SalesOrder"]
else:
result = conn.call("BAPI_SALESORDER_CREATEFROMDAT2", {...})
check_bapi_return(result["RETURN"]) # Always check
return result["SALESDOCUMENT"]
Common Pitfalls
- "Lift and shift" mentality: Assuming ECC integrations work unchanged leads to post-migration failures. Fix:
Audit every interface against Simplification List; budget 30-40% of migration effort for interface remediation. [src1]
- Ignoring data model simplification: Universal Journal merges 5+ FI/CO tables; compatibility views perform terribly. Fix:
Map financial interfaces to CDS view-based OData services before go-live. [src1]
- Delaying middleware migration: Running PI/PO alongside S/4HANA creates dual maintenance burden. Fix:
Plan PI/PO-to-CPI migration as part of S/4HANA project. [src4]
- Underestimating Business Partner impact: Customer/vendor merge into BP affects every master data interface. Fix:
Run CVI migration early; validate all interfaces against BP model. [src1]
- Not testing IDoc structures: Changed segments cause silent data loss. Fix:
Re-export IDoc metadata from S/4HANA (WE60); diff against ECC definitions. [src2]
- Skipping API Business Hub review: Many custom interfaces replicate standard S/4HANA APIs. Fix:
Search api.sap.com for every custom interface; prefer standard APIs. [src5]
Diagnostic Commands
# ===== SAP ECC Diagnostics =====
# Check RFC destinations: Transaction SM59 → test connection
# Monitor IDocs: BD87 (reprocessing), WE02/WE05 (list), WE19 (test)
# SOAP config: SOAMANAGER → Service Administration
# Custom BAPIs/RFCs: SE37 → search Z* with RFC-enabled flag
# ===== SAP S/4HANA Diagnostics =====
# Test OData service endpoint
curl -v "https://{host}/sap/opu/odata/sap/API_SALES_ORDER_SRV/\$metadata" \
-H "Authorization: Basic $(echo -n 'USER:PASS' | base64)"
# OData service activation: /IWFND/MAINT_SERVICE
# OData error log: /IWFND/ERROR_LOG
# OData request traces: /IWFND/TRACES
# S/4HANA readiness check: /SDF/RC_START_CHECK
# BP migration status: CVI_COCKPIT
# CPI monitoring: BTP Cockpit → Integration Suite → Monitor
Version History & Compatibility
| S/4HANA Release | Release Date | Key Integration Changes | ECC Impact |
| S/4HANA 2025 | 2025-10 | Enhanced OData V4, expanded Business Events | More BAPIs deprecated |
| S/4HANA 2024 | 2024-10 | RAP-based APIs expanded, Event Mesh improvements | Additional table simplifications |
| S/4HANA 2023 | 2023-10 | Key User Extensibility for OData, CDS enhancements | Simplification List v26 |
| S/4HANA 2021 | 2021-10 | Native OAuth 2.0 on-premise, Business Events GA | PI/PO migration tools |
| S/4HANA 2020 | 2020-10 | Business Events add-on, SAP Graph preview | First event-driven option |
| S/4HANA 1909 | 2019-09 | OData V4 support, API Business Hub expansion | Major BAPI deprecation wave |
ECC End-of-Life Timeline
| Milestone | Date | Impact |
| ECC EHP 0-5 mainstream support end | 2025-12-31 | No more patches for older EHPs |
| ECC EHP 6-8 mainstream support end | 2027-12-31 | No security patches, compliance updates, or fixes |
| ECC extended maintenance | 2028-01-01 to 2030-12-31 | Break-fix only, ~2% additional cost |
| ECC all support ends | 2030-12-31 | No SAP support of any kind |
When to Use / When Not to Use
| Use When | Don't Use When | Use Instead |
| Planning ECC-to-S/4HANA migration integration impact | Need S/4HANA Cloud-specific API limits | SAP S/4HANA Cloud API card |
| Comparing middleware options (PI/PO vs CPI) | Need Salesforce-to-SAP integration guide | Salesforce-SAP integration playbook |
| Assessing which ECC integrations need remediation | Need SAP BTP Integration Suite setup | SAP BTP Integration Suite card |
| Evaluating deployment model for integration | Need SuccessFactors or Ariba specifics | Product-specific integration cards |
| Building integration remediation business case | Need general ERP selection guidance | ERP vendor selection cards |
Cross-System Comparison
| Capability | SAP ECC 6.0 | S/4HANA On-Premise | S/4HANA Cloud | Notes |
| API style | RFC/BAPI (proprietary) | OData + RFC (hybrid) | OData/REST only | Cloud forces modernization |
| API catalog | None | SAP API Business Hub | SAP API Business Hub | Searchable, versioned |
| Async messaging | IDoc + ALE | IDoc (reduced) + SAP RM + Events | SAP RM + Events (no IDoc) | IDoc deprecated for Cloud |
| Event-driven | Not available | Business Events (add-on) | Business Events (native) | Requires BTP Event Mesh |
| Middleware | PI/PO | CPI / Integration Suite | CPI (required) | PI/PO = maintenance-only |
| Authentication | SNC, basic, WS-Security | OAuth 2.0, X.509, SAML, basic | OAuth 2.0, X.509, SAML | Cloud mandates modern auth |
| Database | Multi-vendor | SAP HANA only | SAP HANA (managed) | HANA required |
| Data model | Traditional (100+ tables) | Simplified (ACDOCA + compat views) | Simplified (no compat for writes) | Biggest integration impact |
| Extensibility | Custom ABAP, user exits | Key User Ext + custom ABAP | Key User Ext only | Cloud limits custom code |
| Support status | EOL 2027 (mainstream) | Current (annual releases) | Current (continuous) | ECC = ticking clock |
Important Caveats
- ECC extended maintenance (2028-2030) provides break-fix support only — no new features, no regulatory updates, no compatibility patches for new OS/database versions.
- S/4HANA On-Premise still supports many ECC interfaces for backward compatibility, but SAP discourages their use and may remove them in future releases.
- The Simplification List grows with each S/4HANA release — BAPIs that work on 2023 may be deprecated in 2025. Pin your target release early.
- Migration effort estimates (18-36 months) often undercount integration remediation — budget 30-40% of total effort for interface work.
- S/4HANA Cloud restricts custom ABAP — integrations relying on custom ABAP programs via RFC CANNOT run in Cloud.
- Digital Access licensing may apply to integrations creating documents in SAP without named user login.
Related Units