SAP Reference
ME32K
Change S/4HANA status: ActiveChange Contract
Boilerplate SQL
Databricks SQLStarting point for querying the tables behind this transaction. Set your Unity Catalog location and filter values below — they’re substituted into the SQL and the copy button.
Query parameters
4 parameters not filled: <catalog>, <schema>, <MANDT>, <EBELN>
-- ============================================================
-- T-Code : ME32K Change Contract
-- Purpose: Change Contract — auto-generated boilerplate from tcode-table-map
-- Grain : One row per EKKO joined to EKPO
-- Tables : EKKO, EKPO
-- Notes : Auto-generated skeleton. Add MAKT/T001W/LFA1/KNA1 enrichment joins as needed for the business question. Set catalog/schema to your Unity Catalog location; fill remaining placeholders (<...>) for your tenant.
-- ============================================================
SELECT
h.MANDT AS "Client",
h.EBELN AS "Purchasing Document Number",
h.DESCRIPTION AS "Description",
l.EBELP AS "Item Number of Purchasing Document"
FROM <catalog>.<schema>.ekko h
LEFT JOIN <catalog>.<schema>.ekpo l
ON l.MANDT = h.MANDT
AND l.EBELN = h.EBELN
WHERE
h.MANDT = '<MANDT>'
AND h.EBELN = '<EBELN>'
ORDER BY h.EBELN;Tables Used by This Transaction
How these tables connect. Nodes are clickable.