v_ml_account_l2_view

DDL: FML_MIG_ACCOUNT_L2 SQL: FMLV_ACCOUNT_L2 Type: view

LOCAL: Material Ledger Periods

v_ml_account_l2_view is a CDS View that provides data about "LOCAL: Material Ledger Periods" in SAP S/4HANA. It reads from 11 data sources.

Data Sources (11)

SourceAliasJoin Type
ebew eb left_outer
marc marc left_outer
mbew mb left_outer
obew ob left_outer
v_ml_cepc_view p left_outer
prps ps left_outer
qbew qb left_outer
t001k t1 inner
t001 t2 inner
tka02 t3 left_outer
tka01 t4 left_outer

Annotations (2)

NameValueLevelField
AbapCatalog.sqlViewName FMLV_ACCOUNT_L2 view
EndUserText.label LOCAL: Material Ledger Periods 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_account_l2_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_ACCOUNT_L2

CREATE VIEW v_ml_account_l2_view AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN t001k AS t1 ON /* join condition not captured in parsed metadata */
INNER JOIN t001 AS t2 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tka02 AS t3 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tka01 AS t4 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN mbew AS mb ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ebew AS eb ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN qbew AS qb ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN prps AS ps ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN obew AS ob ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN marc ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN v_ml_cepc_view AS p ON /* join condition not captured in parsed metadata */
;