fmlv_logistic_currency

DDL: FMLV_LOGISTIC_CURRENCY SQL: FMLVLOGCURR Type: view

Select currency for logistic application

fmlv_logistic_currency is a CDS View that provides data about "Select currency for logistic application" in SAP S/4HANA. It reads from 1 data source (fmlt_curtp_ml) and exposes 5 fields with key field bukrs.

Data Sources (1)

SourceAliasJoin Type
fmlt_curtp_ml fmlt_curtp_ml from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName FMLVLOGCURR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AccessControl.authorizationCheck #NOT_ALLOWED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Select currency for logistic application view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY bukrs rbukrs Company Code
ext_curtype curtp Valuation Area
rldnr rldnr Ledger (Compat.)
rcolumn rcolumn Char01
waers waers Transaction Currency

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_logistic_currency.
-- 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: FMLVLOGCURR

CREATE VIEW fmlv_logistic_currency AS
SELECT
  rbukrs AS bukrs,
  curtp AS ext_curtype,
  rldnr,
  rcolumn,
  waers
FROM fmlt_curtp_ml
;