v_ml_invtot_l1_view

DDL: FML_MIG_INVTOT_L1 SQL: FMLV_INVTOT_L1 Type: view

LOCAL: Inventory Stock Totals

v_ml_invtot_l1_view is a CDS View that provides data about "LOCAL: Inventory Stock Totals" in SAP S/4HANA. It reads from 4 data sources (mbewh, ebewh, qbewh, obewh).

Data Sources (4)

SourceAliasJoin Type
mbewh h left_outer
ebewh h left_outer
qbewh h left_outer
obewh h left_outer

Annotations (2)

NameValueLevelField
AbapCatalog.sqlViewName FMLV_INVTOT_L1 view
EndUserText.label LOCAL: Inventory Stock Totals 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_invtot_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_INVTOT_L1

CREATE VIEW v_ml_invtot_l1_view AS
SELECT *  -- field list not available in parsed metadata
LEFT OUTER JOIN mbewh AS h ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ebewh AS h ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN qbewh AS h ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN obewh AS h ON /* join condition not captured in parsed metadata */
;