Fclm_Mmpo_Grplev_Velidation

DDL: FCLM_MMPO_GRPLEV_VELIDATION SQL: VFCLMMMPOGRPLEVV Type: view

Velidation MM Planning Level and Group

Fclm_Mmpo_Grplev_Velidation is a CDS View that provides data about "Velidation MM Planning Level and Group" in SAP S/4HANA. It reads from 3 data sources (Fclm_Mmpo_Grplev, t036, t035) and exposes 5 fields.

Data Sources (3)

SourceAliasJoin Type
Fclm_Mmpo_Grplev a from
t036 b inner
t035 c inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName VFCLMMMPOGRPLEVV view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Velidation MM Planning Level and Group view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view

Fields (5)

KeyFieldSource TableSource FieldDescription
lifnr Fclm_Mmpo_Grplev lifnr Vendor no.
ebeln Fclm_Mmpo_Grplev ebeln Source PurchDoc
bukrs Fclm_Mmpo_Grplev bukrs Value
fdgrp Fclm_Mmpo_Grplev fdgrp Planning group
ebene Fclm_Mmpo_Grplev ebene Planning Level

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 Fclm_Mmpo_Grplev_Velidation.
-- 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: VFCLMMMPOGRPLEVV

CREATE VIEW Fclm_Mmpo_Grplev_Velidation AS
SELECT
  a.lifnr AS lifnr,
  a.ebeln AS ebeln,
  a.bukrs AS bukrs,
  a.fdgrp AS fdgrp,
  a.ebene AS ebene
FROM Fclm_Mmpo_Grplev AS a
INNER JOIN t036 AS b ON /* join condition not captured in parsed metadata */
INNER JOIN t035 AS c ON /* join condition not captured in parsed metadata */
;