Fclm_Mmpo_Pgrp

DDL: FCLM_MMPO_PGRP SQL: VFCLMMMPOPGRP Type: view

Planning group

Fclm_Mmpo_Pgrp is a CDS View that provides data about "Planning group" in SAP S/4HANA. It reads from 1 data source (lfa1) and exposes 2 fields.

Data Sources (1)

SourceAliasJoin Type
lfa1 b inner

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName VFCLMMMPOPGRP view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Planning 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 (2)

KeyFieldSource TableSource FieldDescription
lifnr lfa1 lifnr Vendor no.
grupp a grupp Planning group

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_Pgrp.
-- 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: VFCLMMMPOPGRP

CREATE VIEW Fclm_Mmpo_Pgrp AS
SELECT
  b.lifnr AS lifnr,
  a.grupp AS grupp
INNER JOIN lfa1 AS b ON /* join condition not captured in parsed metadata */
;