I_ConfigurableCodesCodeGroup

DDL: I_CONFIGURABLECODESCODEGROUP Type: view_entity BASIC

Code Group of Configurable Codes

I_ConfigurableCodesCodeGroup (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

ConfigurableCodesCodeGroup · Manufacturing

I_ConfigurableCodesCodeGroup is a Basic CDS View (Dimension) that provides data about "Code Group of Configurable Codes" in SAP S/4HANA. It reads from 1 data source (qpgr) and exposes 6 fields with key fields ConfigurableCodesCatalog, ConfigurableCodesCodeGroup. It has 3 associations to related views.

SAP Help Documentation

CategoryCDS Views for Quality Planning
Purpose
This CDS view provides access to the definition of configurable code groups for all catalog types. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Structure
Parameters The view does not have any input parameters. Measures and Attributes Some important measures and attributes are: ConfigurableCodesCatalog

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentQM-PT
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Analytical Dimension, Data Source for Data Extraction
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to the definition of configurable code groups for all catalog types.</p> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
qpgr qpgr from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_ConfigurableCodesCatalog _ConfigurableCodesCatalog $projection.ConfigurableCodesCatalog = _ConfigurableCodesCatalog.ConfigurableCodesCatalog
[1..*] I_ConfigblCodesCodeGroupText _Text $projection.ConfigurableCodesCatalog = _Text.ConfigurableCodesCatalog and $projection.ConfigurableCodesCodeGroup = _Text.ConfigurableCodesCodeGroup
[1..*] I_ConfigurableCodesCode _ConfigurableCodesCode $projection.ConfigurableCodesCatalog = _ConfigurableCodesCode.ConfigurableCodesCatalog and $projection.ConfigurableCodesCodeGroup = _ConfigurableCodesCode.ConfigurableCodesCodeGroup

Annotations (16)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey ConfigurableCodesCodeGroup view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
EndUserText.label Code Group of Configurable Codes view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
ObjectModel.sapObjectNodeType.name ConfigurableCodesCodeGroup view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ConfigurableCodesCatalog qpgr katalogart Catalog
KEY ConfigurableCodesCodeGroup qpgr codegruppe Code Group
ConfigblCodesCodeGroupStatus qpgr status Status of Master Record
_ConfigurableCodesCatalog _ConfigurableCodesCatalog
_ConfigurableCodesCode _ConfigurableCodesCode
_Text _Text

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_ConfigurableCodesCodeGroup.
-- 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.

CREATE VIEW I_ConfigurableCodesCodeGroup AS
SELECT
  qpgr.katalogart AS ConfigurableCodesCatalog,
  qpgr.codegruppe AS ConfigurableCodesCodeGroup,
  qpgr.status AS ConfigblCodesCodeGroupStatus
FROM qpgr
LEFT OUTER JOIN I_ConfigurableCodesCatalog AS _ConfigurableCodesCatalog ON ConfigurableCodesCatalog = _ConfigurableCodesCatalog.ConfigurableCodesCatalog  -- association [1..1]
LEFT OUTER JOIN I_ConfigblCodesCodeGroupText AS _Text ON ConfigurableCodesCatalog = _Text.ConfigurableCodesCatalog AND ConfigurableCodesCodeGroup = _Text.ConfigurableCodesCodeGroup  -- association [1..*]
LEFT OUTER JOIN I_ConfigurableCodesCode AS _ConfigurableCodesCode ON ConfigurableCodesCatalog = _ConfigurableCodesCode.ConfigurableCodesCatalog AND ConfigurableCodesCodeGroup = _ConfigurableCodesCode.ConfigurableCodesCodeGroup  -- association [1..*]
;