P_DMVCCompSplitControlRecord

DDL: P_DMVCCOMPSPLITCONTROLRECORD Type: view_entity BASIC Package: ODATA_ML_MATLVCA_DISP

DMVC: Cost Component Split (Control Record)

P_DMVCCompSplitControlRecord is a Basic CDS View that provides data about "DMVC: Cost Component Split (Control Record)" in SAP S/4HANA. It reads from 1 data source (ckmlkevld) and exposes 8 fields with key fields ValuationArea, PostingYear, PostingPeriod, untper, LedgerValuationCurrencyRole. Part of development package ODATA_ML_MATLVCA_DISP.

Data Sources (1)

SourceAliasJoin Type
ckmlkevld ckmlkevld from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
VDM.private true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ValuationArea bwkey Valuation Area
KEY PostingYear bdatj Year
KEY PostingPeriod poper Posting periods
KEY untper untper Value Type
KEY LedgerValuationCurrencyRole ext_curtype Crcy.Type/Val.View
KEY Ledger rldnr Ledger (Compat.)
CostComponentStructure elehk Reserve
elehkns elehkns Cost Comp. Str.

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 P_DMVCCompSplitControlRecord.
-- 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 P_DMVCCompSplitControlRecord AS
SELECT
  bwkey AS ValuationArea,
  bdatj AS PostingYear,
  poper AS PostingPeriod,
  untper,
  ext_curtype AS LedgerValuationCurrencyRole,
  rldnr AS Ledger,
  elehk AS CostComponentStructure,
  elehkns
FROM ckmlkevld
;