v_ml_check2a_view

DDL: FML_MIG_CHECK2A SQL: FMLV_CHECK2A Type: view

Material Ledger check migrated data vs. CKMCLPP

v_ml_check2a_view is a CDS View that provides data about "Material Ledger check migrated data vs. CKMCLPP" in SAP S/4HANA. It reads from 2 data sources (ckmlpp, v_ml_p_gap_view).

Data Sources (2)

SourceAliasJoin Type
ckmlpp c2 left_outer
v_ml_p_gap_view v inner

Annotations (2)

NameValueLevelField
AbapCatalog.sqlViewName FMLV_CHECK2A view
EndUserText.label Material Ledger check migrated data vs. CKMCLPP 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_check2a_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_CHECK2A

CREATE VIEW v_ml_check2a_view AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN v_ml_p_gap_view AS v ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ckmlpp AS c2 ON /* join condition not captured in parsed metadata */
;