I_ConfigurableCodesCatalog

DDL: I_CONFIGURABLECODESCATALOG Type: view_entity BASIC

Catalog of Configurable Codes

I_ConfigurableCodesCatalog (Basic)

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

Catalog of Configurable Codes · Manufacturing

I_ConfigurableCodesCatalog is a Basic CDS View (Dimension) that provides data about "Catalog of Configurable Codes" in SAP S/4HANA. It reads from 1 data source (tq15) and exposes 4 fields with key field ConfigurableCodesCatalog. It has 2 associations to related views.

SAP Help Documentation

CategoryCDS Views for Quality Planning
Purpose
This CDS view provides access to the definition of 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, Association Target for Defining CDS Entities, Data Source 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 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
tq15 tq15 from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_ConfigblCodesCatalogText _ConfigblCodesCatalogText $projection.ConfigurableCodesCatalog = _ConfigblCodesCatalogText.ConfigurableCodesCatalog
[1..*] I_ConfigurableCodesCodeGroup _ConfigurableCodesCodeGroup $projection.ConfigurableCodesCatalog = _ConfigurableCodesCodeGroup.ConfigurableCodesCatalog

Annotations (15)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Catalog of Configurable Codes 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 #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey ConfigurableCodesCatalog view
ObjectModel.sapObjectNodeType.name ConfigurableCodesCatalog view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ConfigurableCodesCatalog tq15 katalogart Catalog
ConfigblCodesCtlgHasLgclDeltn Deactivate Deleted Catalog Entries
_ConfigblCodesCatalogText _ConfigblCodesCatalogText
_ConfigurableCodesCodeGroup _ConfigurableCodesCodeGroup

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_ConfigurableCodesCatalog.
-- 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_ConfigurableCodesCatalog AS
SELECT
  tq15.katalogart AS ConfigurableCodesCatalog,
  cast( tq15.hist as vdm_qhistkat preserving type ) AS ConfigblCodesCtlgHasLgclDeltn
FROM tq15
LEFT OUTER JOIN I_ConfigblCodesCatalogText AS _ConfigblCodesCatalogText ON ConfigurableCodesCatalog = _ConfigblCodesCatalogText.ConfigurableCodesCatalog  -- association [0..*]
LEFT OUTER JOIN I_ConfigurableCodesCodeGroup AS _ConfigurableCodesCodeGroup ON ConfigurableCodesCatalog = _ConfigurableCodesCodeGroup.ConfigurableCodesCatalog  -- association [1..*]
;