I_ProcmtHubCompanyCodeGroup

DDL: I_PROCMTHUBCOMPANYCODEGROUP SQL: IPROCMTHUBCCGRP Type: view BASIC

Procmt Hub Defined Company Code Grouping

I_ProcmtHubCompanyCodeGroup is a Basic CDS View that provides data about "Procmt Hub Defined Company Code Grouping" in SAP S/4HANA. It reads from 1 data source (mmpur_cc_grp_def) and exposes 2 fields with key field ProcmtHubCompanyCodeGroupingID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
mmpur_cc_grp_def mmpur_cc_grp_def from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProcmtHubCoCodeGrpText _Text _Text.ProcmtHubCompanyCodeGroupingID = $projection.ProcmtHubCompanyCodeGroupingID

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPROCMTHUBCCGRP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #VALUE_HELP view
EndUserText.label Procmt Hub Defined Company Code Grouping view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProcmtHubCompanyCodeGroupingID ccgroupid Grouping ID
ProcmtHubCoCodeGroupingName

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_ProcmtHubCompanyCodeGroup.
-- 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: IPROCMTHUBCCGRP

CREATE VIEW I_ProcmtHubCompanyCodeGroup AS
SELECT
  ccgroupid AS ProcmtHubCompanyCodeGroupingID,
  _Text[1: ProcmtHubLanguageKey = $session.system_language].ProcmtHubCoCodeGroupingName AS ProcmtHubCoCodeGroupingName
FROM mmpur_cc_grp_def
LEFT OUTER JOIN I_ProcmtHubCoCodeGrpText AS _Text ON _Text.ProcmtHubCompanyCodeGroupingID = ProcmtHubCompanyCodeGroupingID  -- association [0..*]
;