P_DMVCComponentControlRecord

DDL: P_DMVCCOMPONENTCONTROLRECORD SQL: PDMVCCCSCTREC Type: view BASIC Package: ODATA_ML_MATLVCA_DISP

DMVC: Cost Component Split (Control Record)

P_DMVCComponentControlRecord 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 (ckmlkev) and exposes 7 fields with key fields ValuationArea, PostingYear, PostingPeriod, untper, LedgerValuationCurrencyRole. Part of development package ODATA_ML_MATLVCA_DISP.

Data Sources (1)

SourceAliasJoin Type
ckmlkev ckmlkev from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PDMVCCCSCTREC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ValuationArea bwkey Valuation Area
KEY PostingYear bdatj Year
KEY PostingPeriod poper Posting periods
KEY untper untper Value Type
KEY LedgerValuationCurrencyRole curtp Valuation Area
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_DMVCComponentControlRecord.
-- 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: PDMVCCCSCTREC

CREATE VIEW P_DMVCComponentControlRecord AS
SELECT
  bwkey AS ValuationArea,
  bdatj AS PostingYear,
  poper AS PostingPeriod,
  untper,
  curtp AS LedgerValuationCurrencyRole,
  elehk AS CostComponentStructure,
  elehkns
FROM ckmlkev
;