I_QltyTskCodeGroupText

DDL: I_QLTYTSKCODEGROUPTEXT SQL: IQTSKCODEGRPT Type: view BASIC

Quality Task Code Group Text

I_QltyTskCodeGroupText is a Basic CDS View that provides data about "Quality Task Code Group Text" in SAP S/4HANA. It reads from 1 data source (qpgt) and exposes 4 fields with key fields QualityTaskCodeGroup, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
qpgt qpgt from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_QltyTskCodeGroup _QltyTskCodeGroup $projection.QualityTaskCodeGroup = _QltyTskCodeGroup.QualityTaskCodeGroup

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IQTSKCODEGRPT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.representativeKey QualityTaskCodeGroup view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
EndUserText.label Quality Task Code Group Text view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY QualityTaskCodeGroup
KEY Language qpgt sprache Language
QualityTaskCodeGroupText
_QltyTskCodeGroup _QltyTskCodeGroup

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_QltyTskCodeGroupText.
-- 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.
-- SQL view name: IQTSKCODEGRPT

CREATE VIEW I_QltyTskCodeGroupText AS
SELECT
  cast( qpgt.codegruppe as vdm_qtaskcodegrp preserving type ) AS QualityTaskCodeGroup,
  qpgt.sprache AS Language,
  cast( qpgt.kurztext as vdm_qtaskcodegrp_text preserving type ) AS QualityTaskCodeGroupText
FROM qpgt
LEFT OUTER JOIN I_QltyTskCodeGroup AS _QltyTskCodeGroup ON QualityTaskCodeGroup = _QltyTskCodeGroup.QualityTaskCodeGroup  -- association [1..1]
;