I_ProcmtHubCostCenter

DDL: I_PROCMTHUBCOSTCENTER SQL: IPROCHUBCOSTCNTR Type: view BASIC

Procurement Hub Cost Center

I_ProcmtHubCostCenter is a Basic CDS View that provides data about "Procurement Hub Cost Center" in SAP S/4HANA. It reads from 1 data source (mmpur_ext_csks) and exposes 5 fields with key fields ProcmtHubControllingArea, ProcmtHubCostCenter, ValidityEndDate, ExtSourceSystem. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
mmpur_ext_csks costcenter from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProcmtHubCostCenterText _ProcmtHubCostCenterText $projection.ProcmtHubControllingArea = _ProcmtHubCostCenterText.ProcmtHubControllingArea and $projection.ProcmtHubCostCenter = _ProcmtHubCostCenterText.ProcmtHubCostCenter and $projection.ExtSourceSystem = _ProcmtHubCostCenterText.ExtSourceSystem

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPROCHUBCOSTCNTR view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey ProcmtHubCostCenter view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Procurement Hub Cost Center view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProcmtHubControllingArea controllingarea Controlling Area
KEY ProcmtHubCostCenter costcenter Cost Center
KEY ValidityEndDate validtodate Valid To
KEY ExtSourceSystem extsourcesystem Connected System ID
CostCenterName Cost Center 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 I_ProcmtHubCostCenter.
-- 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: IPROCHUBCOSTCNTR

CREATE VIEW I_ProcmtHubCostCenter AS
SELECT
  controllingarea AS ProcmtHubControllingArea,
  costcenter AS ProcmtHubCostCenter,
  validtodate AS ValidityEndDate,
  ExtSourceSystem,
  _ProcmtHubCostCenterText[1: Language = $session.system_language].CostCenterName AS CostCenterName
FROM mmpur_ext_csks AS costcenter
LEFT OUTER JOIN I_ProcmtHubCostCenterText AS _ProcmtHubCostCenterText ON ProcmtHubControllingArea = _ProcmtHubCostCenterText.ProcmtHubControllingArea AND ProcmtHubCostCenter = _ProcmtHubCostCenterText.ProcmtHubCostCenter AND ExtSourceSystem = _ProcmtHubCostCenterText.ExtSourceSystem  -- association [0..*]
;