I_ConfigurableCodesCode

DDL: I_CONFIGURABLECODESCODE Type: view_entity BASIC

Code of Configurable Codes

I_ConfigurableCodesCode (Basic)

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

ConfigurableCodesCode · Manufacturing

I_ConfigurableCodesCode is a Basic CDS View (Dimension) that provides data about "Code of Configurable Codes" in SAP S/4HANA. It reads from 1 data source (qpcd) and exposes 6 fields with key fields ConfigurableCodesCatalog, ConfigurableCodesCodeGroup, ConfigurableCodesCode. 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 catalog codes 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
Main input 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 catalog codes 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
qpcd qpcd from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_ConfigurableCodesCatalog _ConfigurableCodesCatalog $projection.ConfigurableCodesCatalog = _ConfigurableCodesCatalog.ConfigurableCodesCatalog
[1..1] I_ConfigurableCodesCodeGroup _ConfigurableCodesCodeGroup $projection.ConfigurableCodesCatalog = _ConfigurableCodesCodeGroup.ConfigurableCodesCatalog and $projection.ConfigurableCodesCodeGroup = _ConfigurableCodesCodeGroup.ConfigurableCodesCodeGroup
[1..*] I_ConfigurableCodesCodeText _Text $projection.ConfigurableCodesCatalog = _Text.ConfigurableCodesCatalog and $projection.ConfigurableCodesCodeGroup = _Text.ConfigurableCodesCodeGroup and $projection.ConfigurableCodesCode = _Text.ConfigurableCodesCode

Annotations (15)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Code of Configurable Codes view
ObjectModel.representativeKey ConfigurableCodesCode view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL 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 #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ConfigurableCodesCatalog qpcd katalogart Catalog
KEY ConfigurableCodesCodeGroup codegruppe Code Group
KEY ConfigurableCodesCode code Water Hazard Cl.
_ConfigurableCodesCatalog _ConfigurableCodesCatalog
_ConfigurableCodesCodeGroup _ConfigurableCodesCodeGroup
_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_ConfigurableCodesCode.
-- 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_ConfigurableCodesCode AS
SELECT
  qpcd.katalogart AS ConfigurableCodesCatalog,
  codegruppe AS ConfigurableCodesCodeGroup,
  code AS ConfigurableCodesCode
FROM qpcd
LEFT OUTER JOIN I_ConfigurableCodesCatalog AS _ConfigurableCodesCatalog ON ConfigurableCodesCatalog = _ConfigurableCodesCatalog.ConfigurableCodesCatalog  -- association [1..1]
LEFT OUTER JOIN I_ConfigurableCodesCodeGroup AS _ConfigurableCodesCodeGroup ON ConfigurableCodesCatalog = _ConfigurableCodesCodeGroup.ConfigurableCodesCatalog AND ConfigurableCodesCodeGroup = _ConfigurableCodesCodeGroup.ConfigurableCodesCodeGroup  -- association [1..1]
LEFT OUTER JOIN I_ConfigurableCodesCodeText AS _Text ON ConfigurableCodesCatalog = _Text.ConfigurableCodesCatalog AND ConfigurableCodesCodeGroup = _Text.ConfigurableCodesCodeGroup AND ConfigurableCodesCode = _Text.ConfigurableCodesCode  -- association [1..*]
;