v_ml_invtot_view

DDL: FML_MIG_INVTOT SQL: FMLV_INVTOT Type: view

LOCAL: Inventory Stock Totals

v_ml_invtot_view is a CDS View that provides data about "LOCAL: Inventory Stock Totals" in SAP S/4HANA. It reads from 3 data sources (tka01, marc, v_ml_cepc_view).

Data Sources (3)

SourceAliasJoin Type
tka01 k left_outer
marc m left_outer
v_ml_cepc_view s left_outer

Annotations (2)

NameValueLevelField
AbapCatalog.sqlViewName FMLV_INVTOT 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_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

CREATE VIEW v_ml_invtot_view AS
SELECT *  -- field list not available in parsed metadata
LEFT OUTER JOIN tka01 AS k ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN marc AS m ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN v_ml_cepc_view AS s ON /* join condition not captured in parsed metadata */
;