R_ACMTrdgContrItmTP

DDL: R_ACMTRDGCONTRITMTP Type: view_entity TRANSACTIONAL

Transaction ProcessingView Contract Item

R_ACMTrdgContrItmTP is a Transactional CDS View that provides data about "Transaction ProcessingView Contract Item" in SAP S/4HANA. It reads from 1 data source (I_ACMTrdgContrItmExtn) and exposes 26 fields with key fields TradingContractNumber, TradingContractItem. It has 12 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ACMTrdgContrItmExtn I_ACMTrdgContrItmExtn from

Associations (12)

CardinalityTargetAliasCondition
[*] R_ACMContrPrcgInfoTP _PricingInfo
[1] R_ACMContrTolInfoTP _ToleranceInfo
[*] R_ACMContrOptntyDetTP _OptionalityInfo
[1] R_ACMContrPaytTrmDetTP _DeferredPaymentInfo
[*] R_ACMContrPrePaytDetTP _PrepaymentInfo
[*] R_ACMContrQtyTypeTP _QuantityTypes
[*] R_ACMContrItmFeeDetTP _FeeDetails
[*] R_ACMContrItmTextDetTP _TextDetails
[*] R_ACMContrTolItmInfoTP _ToleranceItemInfo
[*] R_ACMTrdgContrItmUoMCnvrsnTP _ItemUoMCnvrsn
[1] R_ACMContrItmDelivDteDetTP _ItemDelivDteDet
[1] R_ACMContrDPQSHeaderTP _DPQS

Annotations (8)

NameValueLevelField
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Transaction ProcessingView Contract Item view

Fields (26)

KeyFieldSource TableSource FieldDescription
KEY TradingContractNumber TradingContractNumber Trading Contract
KEY TradingContractItem TradingContractItem Item Number
TradingContractType TradingContractType
ContractMaterial ContractMaterial
Commodity Commodity Commodity Code
ACMTrdgContrActualStartDate ACMTrdgContrActualStartDate
ActualStartDateTo ActualStartDateTo
ContractPlant ContractPlant
TradingContractItemQuantity TradingContractItemQuantity
UnitOfMeasure UnitOfMeasure Unit Protected Qty
PricingApproach PricingApproach
ValuationPoint ValuationPoint
ContractStorageLocation ContractStorageLocation
_ContractHeader _ContractHeader
_DeferredPaymentInfo _DeferredPaymentInfo
_FeeDetails _FeeDetails
_OptionalityInfo _OptionalityInfo
_PrepaymentInfo _PrepaymentInfo
_PricingInfo _PricingInfo
_QuantityTypes _QuantityTypes
_TextDetails _TextDetails
_ToleranceInfo _ToleranceInfo
_ToleranceItemInfo _ToleranceItemInfo
_ItemUoMCnvrsn _ItemUoMCnvrsn
_ItemDelivDteDet _ItemDelivDteDet
_DPQS _DPQS

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 R_ACMTrdgContrItmTP.
-- 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 R_ACMTrdgContrItmTP AS
SELECT
  TradingContractNumber,
  TradingContractItem,
  TradingContractType,
  ContractMaterial,
  Commodity,
  ACMTrdgContrActualStartDate,
  ActualStartDateTo,
  ContractPlant,
  TradingContractItemQuantity,
  UnitOfMeasure,
  PricingApproach,
  ValuationPoint,
  ContractStorageLocation
FROM I_ACMTrdgContrItmExtn
LEFT OUTER JOIN R_ACMContrPrcgInfoTP AS _PricingInfo ON /* condition not available in parsed metadata */  -- association [*]
LEFT OUTER JOIN R_ACMContrTolInfoTP AS _ToleranceInfo ON /* condition not available in parsed metadata */  -- association [1]
LEFT OUTER JOIN R_ACMContrOptntyDetTP AS _OptionalityInfo ON /* condition not available in parsed metadata */  -- association [*]
LEFT OUTER JOIN R_ACMContrPaytTrmDetTP AS _DeferredPaymentInfo ON /* condition not available in parsed metadata */  -- association [1]
LEFT OUTER JOIN R_ACMContrPrePaytDetTP AS _PrepaymentInfo ON /* condition not available in parsed metadata */  -- association [*]
LEFT OUTER JOIN R_ACMContrQtyTypeTP AS _QuantityTypes ON /* condition not available in parsed metadata */  -- association [*]
LEFT OUTER JOIN R_ACMContrItmFeeDetTP AS _FeeDetails ON /* condition not available in parsed metadata */  -- association [*]
LEFT OUTER JOIN R_ACMContrItmTextDetTP AS _TextDetails ON /* condition not available in parsed metadata */  -- association [*]
LEFT OUTER JOIN R_ACMContrTolItmInfoTP AS _ToleranceItemInfo ON /* condition not available in parsed metadata */  -- association [*]
LEFT OUTER JOIN R_ACMTrdgContrItmUoMCnvrsnTP AS _ItemUoMCnvrsn ON /* condition not available in parsed metadata */  -- association [*]
LEFT OUTER JOIN R_ACMContrItmDelivDteDetTP AS _ItemDelivDteDet ON /* condition not available in parsed metadata */  -- association [1]
LEFT OUTER JOIN R_ACMContrDPQSHeaderTP AS _DPQS ON /* condition not available in parsed metadata */  -- association [1]
;