FMLV_MLCRF_UCT

DDL: FMLV_MLCRF_UCT SQL: FMLCRFUCT Type: view

ML Document:Field Groups (Currencies) with correct CURTP

FMLV_MLCRF_UCT is a CDS View that provides data about "ML Document:Field Groups (Currencies) with correct CURTP" in SAP S/4HANA. It reads from 2 data sources (finsv_unique_cvtyps, mlcrfld) and exposes 10 fields with key fields belnr, kjahr, posnr, bdatj, poper.

Data Sources (2)

SourceAliasJoin Type
finsv_unique_cvtyps curr left_outer
mlcrfld mlcrf from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName FMLCRFUCT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XL view
EndUserText.label ML Document:Field Groups (Currencies) with correct CURTP view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY belnr mlcrfld belnr SD Document
KEY kjahr mlcrfld kjahr Year
KEY posnr mlcrfld posnr WBS Element
KEY bdatj mlcrfld bdatj Year
KEY poper mlcrfld poper Posting periods
KEY curtp finsv_unique_cvtyps curtype Currency Type
KEY feldg mlcrfld feldg Field Group
prdif prdif Price Diff.
krdif krdif Exch.Rate Diff.
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_MLCRF_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: FMLCRFUCT

CREATE VIEW FMLV_MLCRF_UCT AS
SELECT
  mlcrf.belnr AS belnr,
  mlcrf.kjahr AS kjahr,
  mlcrf.posnr AS posnr,
  mlcrf.bdatj AS bdatj,
  mlcrf.poper AS poper,
  curr.curtype AS curtp,
  mlcrf.feldg AS feldg,
  prdif,
  krdif,
  cast( '01' as fins_ml_sdm_version ) AS sdm_version
FROM mlcrfld AS mlcrf
LEFT OUTER JOIN finsv_unique_cvtyps AS curr ON /* join condition not captured in parsed metadata */
;