A_ACMTrdgContractOverview

DDL: A_ACMTRDGCONTRACTOVERVIEW Type: view_entity CONSUMPTION

Contract Header

A_ACMTrdgContractOverview is a Consumption CDS View that provides data about "Contract Header" in SAP S/4HANA. It reads from 1 data source (R_ACMTrdgContrHdrTP) and exposes 30 fields with key field TradingContractNumber.

Data Sources (1)

SourceAliasJoin Type
R_ACMTrdgContrHdrTP R_ACMTrdgContrHdrTP projection

Annotations (8)

NameValueLevelField
OData.entityType.name TradingContract_Type view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Contract Header view
AccessControl.authorizationCheck #CHECK view

Fields (30)

KeyFieldSource TableSource FieldDescription
KEY TradingContractNumber TradingContractNumber Trading Contract
TradingContractType TradingContractType
ContractStatus ContractStatus Paper Contr Status
ACMContractCategory ACMContractCategory
ACMTrdgContrStatusCategory ACMTrdgContrStatusCategory
Side Side Side
TradingContractCurrency TradingContractCurrency
ACMTradingContractCategory ACMTradingContractCategory
TradingContractExternalID TradingContractExternalID
SalesOrganization SalesOrganization Sales Organization
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
Division Division Internal Division ID
PurchasingOrganization PurchasingOrganization Purchasing Organization
PurchasingGroup PurchasingGroup Purchasing Group
DocumentDate DocumentDate Journal Entry Date
TradingContractCreatedBy TradingContractCreatedBy
TradingContractChangedBy TradingContractChangedBy
TradingContractChangedOnDate TradingContractChangedOnDate
ACMAmendingTraderID ACMAmendingTraderID
ACMOriginalTraderID ACMOriginalTraderID
Counterparty Counterparty Supplier
Incoterms Incoterms Incoterms
PaymentTerms PaymentTerms Pyt Terms
IncotermsLocation1 IncotermsLocation1 Inco. Location1
CompanyCode CompanyCode Receiver Company Code
TradingContractTradeOffice TradingContractTradeOffice
TradingContractCreditSales TradingContractCreditSales
ACMSignedStatus ACMSignedStatus
ACMTradingContractCurrency ACMTradingContractCurrency
ACMBidValidTillDate ACMBidValidTillDate

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 A_ACMTrdgContractOverview.
-- 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.

CREATE VIEW A_ACMTrdgContractOverview AS
SELECT
  TradingContractNumber,
  TradingContractType,
  ContractStatus,
  ACMContractCategory,
  ACMTrdgContrStatusCategory,
  Side,
  TradingContractCurrency,
  ACMTradingContractCategory,
  TradingContractExternalID,
  SalesOrganization,
  DistributionChannel,
  Division,
  PurchasingOrganization,
  PurchasingGroup,
  DocumentDate,
  TradingContractCreatedBy,
  TradingContractChangedBy,
  TradingContractChangedOnDate,
  ACMAmendingTraderID,
  ACMOriginalTraderID,
  Counterparty,
  Incoterms,
  PaymentTerms,
  IncotermsLocation1,
  CompanyCode,
  TradingContractTradeOffice,
  TradingContractCreditSales,
  ACMSignedStatus,
  ACMTradingContractCurrency,
  ACMBidValidTillDate
FROM R_ACMTrdgContrHdrTP
;