I_ConfigblCodesCodeGroupText

DDL: I_CONFIGBLCODESCODEGROUPTEXT Type: view_entity BASIC

Code Group of Configurable Codes - Text

I_ConfigblCodesCodeGroupText (Basic)

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

Manufacturing

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

SAP Help Documentation

CategoryCDS Views for Quality Planning
Purpose
This CDS view helps you to get the description of a code group. 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
Further Important Fields Important fields in this view include the following: Field Name Description ConfigurableCodesCatalog Catalog ConfigurableCodesCodeGroup Code Group Language Language Key ConfigblCodesCodeGrpTxt Code Group Text

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 a code group.</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
qpgt qpgt from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ConfigurableCodesCatalog _ConfigurableCodesCatalog $projection.ConfigurableCodesCatalog = _ConfigurableCodesCatalog.ConfigurableCodesCatalog
[1..1] I_ConfigurableCodesCodeGroup _ConfigurableCodesCodeGroup $projection.ConfigurableCodesCatalog = _ConfigurableCodesCodeGroup.ConfigurableCodesCatalog and $projection.ConfigurableCodesCodeGroup = _ConfigurableCodesCodeGroup.ConfigurableCodesCodeGroup

Annotations (13)

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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ConfigurableCodesCatalog qpgt katalogart Catalog
KEY ConfigurableCodesCodeGroup qpgt codegruppe Code Group
KEY Language qpgt sprache Language Key
ConfigblCodesCodeGrpTxt Text for Code Group
_ConfigurableCodesCatalog _ConfigurableCodesCatalog
_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_ConfigblCodesCodeGroupText.
-- 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_ConfigblCodesCodeGroupText AS
SELECT
  qpgt.katalogart AS ConfigurableCodesCatalog,
  qpgt.codegruppe AS ConfigurableCodesCodeGroup,
  qpgt.sprache AS Language,
  cast( qpgt.kurztext as vdm_qktextgr preserving type ) AS ConfigblCodesCodeGrpTxt
FROM qpgt
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]
;