I_ProcmtHubProduct

DDL: I_PROCMTHUBPRODUCT SQL: IHUBPROD Type: view BASIC Package: APPL_PROC_HUB_GF

Basic view for backnd Product

I_ProcmtHubProduct is a Basic CDS View that provides data about "Basic view for backnd Product" in SAP S/4HANA. It reads from 1 data source (mmpur_ext_mara) and exposes 8 fields with key fields ProcmtHubProduct, ProcurementHubSourceSystem. It has 3 associations to related views. Part of development package APPL_PROC_HUB_GF.

Data Sources (1)

SourceAliasJoin Type
mmpur_ext_mara mmpur_ext_mara from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_ProcmtHubProductTxt _MaterialText $projection.ProcmtHubProduct = _MaterialText.Material and $projection.ProcurementHubSourceSystem = _MaterialText.ProcurementHubSourceSystem
[0..1] I_ProcmtHubProductType _MaterialType $projection.MaterialType = _MaterialType.MaterialType and $projection.ProcurementHubSourceSystem = _MaterialType.ProcurementHubSourceSystem
[0..1] I_ProcmtHubProductGroup _MaterialGroup $projection.MaterialGroup = _MaterialGroup.ProcmtHubProductGroup and $projection.ProcurementHubSourceSystem = _MaterialGroup.ProcurementHubSourceSystem

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IHUBPROD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
EndUserText.label Basic view for backnd Product view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ProcmtHubProduct material Vehicle Model
KEY ProcurementHubSourceSystem extsourcesystem Connected System ID
MaterialType materialtype Material Type
MaterialGroup materialgroup Product Group
MaterialAuthorizationGroup authorizationgroup AuthorizGroup
_MaterialText _MaterialText
_MaterialType _MaterialType
_MaterialGroup _MaterialGroup

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_ProcmtHubProduct.
-- 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: IHUBPROD

CREATE VIEW I_ProcmtHubProduct AS
SELECT
  material AS ProcmtHubProduct,
  extsourcesystem AS ProcurementHubSourceSystem,
  MaterialType,
  MaterialGroup,
  authorizationgroup AS MaterialAuthorizationGroup
FROM mmpur_ext_mara
LEFT OUTER JOIN I_ProcmtHubProductTxt AS _MaterialText ON ProcmtHubProduct = _MaterialText.Material AND ProcurementHubSourceSystem = _MaterialText.ProcurementHubSourceSystem  -- association [0..*]
LEFT OUTER JOIN I_ProcmtHubProductType AS _MaterialType ON MaterialType = _MaterialType.MaterialType AND ProcurementHubSourceSystem = _MaterialType.ProcurementHubSourceSystem  -- association [0..1]
LEFT OUTER JOIN I_ProcmtHubProductGroup AS _MaterialGroup ON MaterialGroup = _MaterialGroup.ProcmtHubProductGroup AND ProcurementHubSourceSystem = _MaterialGroup.ProcurementHubSourceSystem  -- association [0..1]
;