C_PrmtHbRpldPurReqnPlantVH

DDL: C_PRMTHBRPLDPURREQNPLANTVH SQL: CPROHUBPRPLANTVH Type: view CONSUMPTION

Plants from Connected Systems

C_PrmtHbRpldPurReqnPlantVH is a Consumption CDS View that provides data about "Plants from Connected Systems" in SAP S/4HANA. It reads from 1 data source (I_BackendPlantForPurg) and exposes 6 fields with key fields ProcurementHubSourceSystem, ProcmtHubPlant, ProcmtHubCompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_BackendPlantForPurg I_BackendPlantForPurg from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CPROHUBPRPLANTVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ProcmtHubPlant view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
EndUserText.label Plants from Connected Systems view
Consumption.ranked true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ProcurementHubSourceSystem ProcurementHubSourceSystem Connected System ID
KEY ProcmtHubPlant Plant Valuation Area
KEY ProcmtHubCompanyCode CompanyCode Receiver Company Code
ProcmtHubPlantName PlantName Plant Name
ProcmtHubCompanyCodeName CompanyCodeName Company Name
ProcurementHubSourceSystemName ProcurementHubSourceSystemName Connected System 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_PrmtHbRpldPurReqnPlantVH.
-- 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: CPROHUBPRPLANTVH

CREATE VIEW C_PrmtHbRpldPurReqnPlantVH AS
SELECT
  ProcurementHubSourceSystem,
  Plant AS ProcmtHubPlant,
  CompanyCode AS ProcmtHubCompanyCode,
  PlantName AS ProcmtHubPlantName,
  CompanyCodeName AS ProcmtHubCompanyCodeName,
  ProcurementHubSourceSystemName
FROM I_BackendPlantForPurg
;