C_PlantByAreaOfRespyVH

DDL: C_PLANTBYAREAOFRESPYVH SQL: CPLNTAORVH Type: view CONSUMPTION

Plant By Area Of Responsibility VH

C_PlantByAreaOfRespyVH is a Consumption CDS View that provides data about "Plant By Area Of Responsibility VH" in SAP S/4HANA. It reads from 1 data source (I_SDMAreaOfResponsibility) and exposes 2 fields with key field Plant.

Data Sources (1)

SourceAliasJoin Type
I_SDMAreaOfResponsibility _AreaOfResponsibility inner

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CPLNTAORVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Plant By Area Of Responsibility VH view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey Plant view
Search.searchable true view
Consumption.ranked true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Plant _Plant Plant Valuation Area
PlantName _Plant PlantName Plant Name

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_PlantByAreaOfRespyVH.
-- 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: CPLNTAORVH

CREATE VIEW C_PlantByAreaOfRespyVH AS
SELECT
  _Plant.Plant AS Plant,
  _Plant.PlantName AS PlantName
INNER JOIN I_SDMAreaOfResponsibility AS _AreaOfResponsibility ON /* join condition not captured in parsed metadata */
;