C_ProcmtHubCntrlContrPurgGrpVH

DDL: C_PROCMTHUBCNTRLCONTRPURGGRPVH SQL: CHUBPUGRPVH Type: view CONSUMPTION

Purchasing Group Value Help for Central Contr Distribution

C_ProcmtHubCntrlContrPurgGrpVH is a Consumption CDS View that provides data about "Purchasing Group Value Help for Central Contr Distribution" in SAP S/4HANA. It reads from 1 data source (I_PurchasingGroup) and exposes 3 fields with key fields ProcurementHubSourceSystem, PurchasingGroup. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingGroup PurchasingGroup from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_BackendSourceSystem _BackendSourceSystem $projection.ProcurementHubSourceSystem = _BackendSourceSystem.ProcurementHubSourceSystem

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CHUBPUGRPVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Purchasing Group Value Help for Central Contr Distribution view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
Consumption.ranked true view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProcurementHubSourceSystem _BackendSourceSystem ProcurementHubSourceSystem Connected System ID
KEY PurchasingGroup I_PurchasingGroup PurchasingGroup Purchasing Group
PurchasingGroupName I_PurchasingGroup PurchasingGroupName Purchasing Grp. 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_ProcmtHubCntrlContrPurgGrpVH.
-- 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: CHUBPUGRPVH

CREATE VIEW C_ProcmtHubCntrlContrPurgGrpVH AS
SELECT
  _BackendSourceSystem.ProcurementHubSourceSystem AS ProcurementHubSourceSystem,
  PurchasingGroup.PurchasingGroup AS PurchasingGroup,
  PurchasingGroup.PurchasingGroupName AS PurchasingGroupName
FROM I_PurchasingGroup AS PurchasingGroup
LEFT OUTER JOIN I_BackendSourceSystem AS _BackendSourceSystem ON ProcurementHubSourceSystem = _BackendSourceSystem.ProcurementHubSourceSystem  -- association [1..1]
;