C_ExchSalesContrSchedgKPI

DDL: C_EXCHSALESCONTRSCHEDGKPI SQL: CEXCHSLSSCHEDKPI Type: view CONSUMPTION

Exchange Sales Contract Scheduling KPI

C_ExchSalesContrSchedgKPI is a Consumption CDS View that provides data about "Exchange Sales Contract Scheduling KPI" in SAP S/4HANA. It reads from 1 data source (I_ExchangeSalesContract) and exposes 12 fields with key fields ExchangeAgreement, SalesDocument. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ExchangeSalesContract I_ExchangeSalesContract from

Associations (1)

CardinalityTargetAliasCondition
[1..*] C_ExchSalesContrItemSchedgKPI _ExchSalesContrItemSchedgKPI $projection.SalesDocument = _ExchSalesContrItemSchedgKPI.SalesDocument

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CEXCHSLSSCHEDKPI view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Exchange Sales Contract Scheduling KPI view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable false view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
UI.headerInfo.typeName Sales Contract view
UI.headerInfo.typeNamePlural Sales Contracts view
UI.headerInfo.title.type #STANDARD view
UI.headerInfo.title.value SalesDocument view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY ExchangeAgreement ExchangeAgreement Exchange no.
KEY SalesDocument SalesDocument SD Document
SalesOrganization SalesOrganization Sales Organization
ValidFrom ValidFrom Vers.Valid From
ValidTo ValidTo Vers.Valid To
SalesContractCreationDate SalesContractCreationDate Entered On
SalesContractCreatedByUser SalesContractCreatedByUser User Name
SalesContractText SalesContractText Text
_SalesDocument _SalesDocument
_SalesOrganization _SalesOrganization
_ExchSalesContrItemSchedgKPI _ExchSalesContrItemSchedgKPI
_ExchangeHeader _ExchangeHeader

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 C_ExchSalesContrSchedgKPI.
-- 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: CEXCHSLSSCHEDKPI

CREATE VIEW C_ExchSalesContrSchedgKPI AS
SELECT
  ExchangeAgreement,
  SalesDocument,
  SalesOrganization,
  ValidFrom,
  ValidTo,
  SalesContractCreationDate,
  SalesContractCreatedByUser,
  SalesContractText
FROM I_ExchangeSalesContract
LEFT OUTER JOIN C_ExchSalesContrItemSchedgKPI AS _ExchSalesContrItemSchedgKPI ON SalesDocument = _ExchSalesContrItemSchedgKPI.SalesDocument  -- association [1..*]
;