I_ConfigurableCodesCodeText

DDL: I_CONFIGURABLECODESCODETEXT Type: view_entity BASIC

Code of Configurable Codes - Text

I_ConfigurableCodesCodeText (Basic)

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

Manufacturing

I_ConfigurableCodesCodeText is a Basic CDS View that provides data about "Code of Configurable Codes - Text" in SAP S/4HANA. It reads from 1 data source (qpct) and exposes 8 fields with key fields ConfigurableCodesCatalog, ConfigurableCodesCodeGroup, ConfigurableCodesCode, Language. It has 3 associations to related views.

SAP Help Documentation

CategoryCDS Views for Quality Planning
Purpose
This CDS view helps you to get the description of configurable catalog codes. 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 Data Extraction, Data Source for Defining CDS Entities, Language-Dependent Text
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view helps you to get the description of configurable catalog codes.</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
qpct qpct 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..1] I_ConfigurableCodesCode _ConfigurableCodesCode $projection.ConfigurableCodesCatalog = _ConfigurableCodesCode.ConfigurableCodesCatalog and $projection.ConfigurableCodesCodeGroup = _ConfigurableCodesCode.ConfigurableCodesCodeGroup and $projection.ConfigurableCodesCode = _ConfigurableCodesCode.ConfigurableCodesCode

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Code of Configurable Codes - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
ObjectModel.representativeKey ConfigurableCodesCode view
Metadata.ignorePropagatedAnnotations true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ConfigurableCodesCatalog katalogart Catalog
KEY ConfigurableCodesCodeGroup codegruppe Code Group
KEY ConfigurableCodesCode code Water Hazard Cl.
KEY Language sprache Language Key
ConfigurableCodesCodeText SText insp.char
_ConfigurableCodesCatalog _ConfigurableCodesCatalog
_ConfigurableCodesCodeGroup _ConfigurableCodesCodeGroup
_ConfigurableCodesCode _ConfigurableCodesCode

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_ConfigurableCodesCodeText.
-- 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_ConfigurableCodesCodeText AS
SELECT
  katalogart AS ConfigurableCodesCatalog,
  codegruppe AS ConfigurableCodesCodeGroup,
  code AS ConfigurableCodesCode,
  sprache AS Language,
  cast( kurztext as vdm_qtxt_code preserving type ) AS ConfigurableCodesCodeText
FROM qpct
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_ConfigurableCodesCode AS _ConfigurableCodesCode ON ConfigurableCodesCatalog = _ConfigurableCodesCode.ConfigurableCodesCatalog AND ConfigurableCodesCodeGroup = _ConfigurableCodesCode.ConfigurableCodesCodeGroup AND ConfigurableCodesCode = _ConfigurableCodesCode.ConfigurableCodesCode  -- association [1..1]
;