FMLV_CKMLKEV_UCT

DDL: FMLV_CKMLKEV_UCT SQL: FCKMLKEVUCT Type: view

Material Ledger Cost Component Split w. cor CURTP

FMLV_CKMLKEV_UCT is a CDS View that provides data about "Material Ledger Cost Component Split w. cor CURTP" in SAP S/4HANA. It reads from 2 data sources (finsv_unique_cvtyps, ckmlkevld) and exposes 8 fields with key fields bwkey, bdatj, poper, untper, curtp.

Data Sources (2)

SourceAliasJoin Type
finsv_unique_cvtyps curr left_outer
ckmlkevld kevld from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName FCKMLKEVUCT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Ledger Cost Component Split w. cor CURTP view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY bwkey bwkey Valuation Area
KEY bdatj bdatj Year
KEY poper poper Posting periods
KEY untper untper Value Type
KEY curtp finsv_unique_cvtyps curtype Currency Type
elehk elehk Reserve
elehkns elehkns Cost Comp. Str.
sdm_version

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 FMLV_CKMLKEV_UCT.
-- 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: FCKMLKEVUCT

CREATE VIEW FMLV_CKMLKEV_UCT AS
SELECT
  bwkey,
  bdatj,
  poper,
  untper,
  curr.curtype AS curtp,
  elehk,
  elehkns,
  cast( '01' as fins_ml_sdm_version ) AS sdm_version
FROM ckmlkevld AS kevld
LEFT OUTER JOIN finsv_unique_cvtyps AS curr ON /* join condition not captured in parsed metadata */
;