P_DMVCCompSplitControlRecord

DDL: P_DMVCCOMPSPLITCONTROLRECORD SQL: PDMVCCCSCTRLR Type: view BASIC

P_DMVCCompSplitControlRecord is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (ckmlkevld) and exposes 8 fields with key fields ValuationArea, PostingYear, PostingPeriod, untper, LedgerValuationCurrencyRole.

Data Sources (1)

SourceAliasJoin Type
ckmlkevld ckmlkevld from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PDMVCCCSCTRLR 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 (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.
-- SQL view name: PDMVCCCSCTRLR

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
;