v_ml_bcf_ol_l1_view

DDL: FML_MIG_BCF_OL_L1 SQL: FMLV_BCF_OL_L1 Type: view

LOCAL: Material Ledger BCF for other ledgers

v_ml_bcf_ol_l1_view is a CDS View that provides data about "LOCAL: Material Ledger BCF for other ledgers" in SAP S/4HANA. It reads from 6 data sources.

Data Sources (6)

SourceAliasJoin Type
finsc_actve_appl appl inner
ckmlcr c1 inner
ckmlpp c2 inner
fisv_ldcmp_cur cur inner
finsc_ledger l inner
fmlv_relind_bwke rel left_outer

Annotations (2)

NameValueLevelField
AbapCatalog.sqlViewName FMLV_BCF_OL_L1 view
EndUserText.label LOCAL: Material Ledger BCF for other ledgers view

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 v_ml_bcf_ol_l1_view.
-- 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: FMLV_BCF_OL_L1

CREATE VIEW v_ml_bcf_ol_l1_view AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN finsc_actve_appl AS appl ON /* join condition not captured in parsed metadata */
INNER JOIN finsc_ledger AS l ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN fmlv_relind_bwke AS rel ON /* join condition not captured in parsed metadata */
INNER JOIN fisv_ldcmp_cur AS cur ON /* join condition not captured in parsed metadata */
INNER JOIN ckmlcr AS c1 ON /* join condition not captured in parsed metadata */
INNER JOIN ckmlpp AS c2 ON /* join condition not captured in parsed metadata */
;