C_ProcmtHubPurReqnRelStsVH

DDL: C_PROCMTHUBPURREQNRELSTSVH SQL: CHUBPRRELST Type: view CONSUMPTION

C-View to Display Texts for Approval Status of PR

C_ProcmtHubPurReqnRelStsVH is a Consumption CDS View that provides data about "C-View to Display Texts for Approval Status of PR" in SAP S/4HANA. It reads from 1 data source (I_ProcmtHubFxdDomainVals) and exposes 4 fields with key fields ProcurementHubSourceSystem, DomainValue. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProcmtHubFxdDomainVals I_ProcmtHubFxdDomainVals from

Associations (1)

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

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CHUBPRRELST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label C-View to Display Texts for Approval Status of PR view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProcurementHubSourceSystem ProcurementHubSourceSystem Connected System ID
KEY DomainValue DomainValue Approval Status
DomainText Approval Status Description
ProcurementHubSourceSystemName _BackendSourceSystem 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_ProcmtHubPurReqnRelStsVH.
-- 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: CHUBPRRELST

CREATE VIEW C_ProcmtHubPurReqnRelStsVH AS
SELECT
  ProcurementHubSourceSystem,
  DomainValue,
  _DomainFixedValueText[1: Language = $session.system_language].DomainText AS DomainText,
  _BackendSourceSystem.ProcurementHubSourceSystemName AS ProcurementHubSourceSystemName
FROM I_ProcmtHubFxdDomainVals
LEFT OUTER JOIN I_BackendSourceSystem AS _BackendSourceSystem ON ProcurementHubSourceSystem = _BackendSourceSystem.ProcurementHubSourceSystem  -- association [1..1]
;