Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

C_Plant_Fs

DDL: C_PLANT_FS SQL: CPLANTFS Type: view CONSUMPTION

Consumption Factsheet - Plant view Facet

C_Plant_Fs is a Consumption CDS View that provides data about "Consumption Factsheet - Plant view Facet" in SAP S/4HANA. It reads from 1 data source (P_Plant_Fs) and exposes 14 fields with key fields Product, Plant. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_Plant_Fs Plant from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_Product_Fs _Product $projection.Product = _Product.Material

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CPLANTFS view
ClientDependent true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Consumption Factsheet - Plant view Facet view
VDM.viewType #CONSUMPTION view
Search.searchable true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.status #DEPRECATED view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY Product P_Plant_Fs Product Product Sold
KEY Plant P_Plant_Fs Plant Valuation Area
PurchasingGroup P_Plant_Fs PurchasingGroup Purchasing Group
MRPResponsible P_Plant_Fs MRPResponsible MRP Controller
MRPControllerName P_Plant_Fs MRPControllerName Controller name
PurchasingGroupName P_Plant_Fs PurchasingGroupName Purchasing Grp. Name
RegionName P_Plant_Fs RegionName Description
RegionOfOrigin P_Plant_Fs RegionOfOrigin Reg. of Origin
ABCIndicator P_Plant_Fs ABCIndicator ABC Indicator
CountryOfOrigin P_Plant_Fs CountryOfOrigin Country/Region of Origin
PlantName P_Plant_Fs PlantName Plant Name
PurchasingGroupPhoneNumber P_Plant_Fs PurchasingGroupPhoneNumber Tel.No.Purch.Gp
MRPControllerPhoneNumber P_Plant_Fs MRPControllerPhoneNumber
_Product _Product

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 C_Plant_Fs.
-- 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: CPLANTFS

CREATE VIEW C_Plant_Fs AS
SELECT
  Plant.Product AS Product,
  Plant.Plant AS Plant,
  Plant.PurchasingGroup AS PurchasingGroup,
  Plant.MRPResponsible AS MRPResponsible,
  Plant.MRPControllerName AS MRPControllerName,
  Plant.PurchasingGroupName AS PurchasingGroupName,
  Plant.RegionName AS RegionName,
  Plant.RegionOfOrigin AS RegionOfOrigin,
  Plant.ABCIndicator AS ABCIndicator,
  Plant.CountryOfOrigin AS CountryOfOrigin,
  Plant.PlantName AS PlantName,
  Plant.PurchasingGroupPhoneNumber AS PurchasingGroupPhoneNumber,
  Plant.MRPControllerPhoneNumber AS MRPControllerPhoneNumber
FROM P_Plant_Fs AS Plant
LEFT OUTER JOIN C_Product_Fs AS _Product ON Product = _Product.Material  -- association [1..1]
;