FMLV_F4_ML

DDL: FMLV_F4_ML SQL: FMLVF4ML Type: view

Select ML relevant currencies

FMLV_F4_ML is a CDS View that provides data about "Select ML relevant currencies" in SAP S/4HANA. It reads from 2 data sources (fmlv_curtp_ml, t001k) and exposes 6 fields with key field rbukrs.

Data Sources (2)

SourceAliasJoin Type
fmlv_curtp_ml c from
t001k k inner

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName FMLVF4ML view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_ALLOWED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Select ML relevant currencies view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY rbukrs fmlv_curtp_ml rbukrs Company Code
bwkey t001k bwkey Valuation Area
curtp fmlv_curtp_ml ext_curtype Crcy.Type/Val.View
waers fmlv_curtp_ml waers Transaction Currency
rldnr fmlv_curtp_ml rldnr Ledger (Compat.)
rcolumn fmlv_curtp_ml rcolumn Char01

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_F4_ML.
-- 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: FMLVF4ML

CREATE VIEW FMLV_F4_ML AS
SELECT
  c.rbukrs AS rbukrs,
  k.bwkey AS bwkey,
  c.ext_curtype AS curtp,
  c.waers AS waers,
  c.rldnr AS rldnr,
  c.rcolumn AS rcolumn
FROM fmlv_curtp_ml AS c
INNER JOIN t001k AS k ON /* join condition not captured in parsed metadata */
;