E_TradingContract

DDL: E_TRADINGCONTRACT SQL: EPPMGTCONTR Type: view EXTENSION

Trading Contract Header Extension view

E_TradingContract is a Extension CDS View that provides data about "Trading Contract Header Extension view" in SAP S/4HANA. It reads from 2 data sources (wbhd, wbhk) and exposes 1 field with key field TradingContract.

Data Sources (2)

SourceAliasJoin Type
wbhd PersistanceBus inner
wbhk PersistanceHeader from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName EPPMGTCONTR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Trading Contract Header Extension view view
VDM.viewType #EXTENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY TradingContract wbhk tkonn Trading Contract

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view E_TradingContract.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: EPPMGTCONTR

CREATE VIEW E_TradingContract AS
SELECT
  PersistanceHeader.tkonn AS TradingContract
FROM wbhk AS PersistanceHeader
INNER JOIN wbhd AS PersistanceBus ON /* join condition not captured in parsed metadata */
;