I_QltyTskCodeGroup

DDL: I_QLTYTSKCODEGROUP Type: view BASIC

Quality Task Code Group

I_QltyTskCodeGroup is a Basic CDS View that provides data about "Quality Task Code Group" in SAP S/4HANA. It reads from 1 data source (qpgr) and exposes 4 fields with key field QualityTaskCodeGroup. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
qpgr qpgr from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_QltyTskCodeGroupText _QltyTskCodeGroupText $projection.QualityTaskCodeGroup = _QltyTskCodeGroupText.QualityTaskCodeGroup
[0..*] I_QltyTskCode _QltyTskCode $projection.QualityTaskCodeGroup = _QltyTskCode.QualityTaskCodeGroup

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IQTSKCODEGRP 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
EndUserText.label Quality Task Code Group view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY QualityTaskCodeGroup
CodeGroupStatus qpgr status Workflow Status
_QltyTskCodeGroupText _QltyTskCodeGroupText
_QltyTskCode _QltyTskCode

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_QltyTskCodeGroup.
-- 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_QltyTskCodeGroup AS
SELECT
  cast( qpgr.codegruppe as vdm_qtaskcodegrp preserving type ) AS QualityTaskCodeGroup,
  qpgr.status AS CodeGroupStatus
FROM qpgr
LEFT OUTER JOIN I_QltyTskCodeGroupText AS _QltyTskCodeGroupText ON QualityTaskCodeGroup = _QltyTskCodeGroupText.QualityTaskCodeGroup  -- association [0..*]
LEFT OUTER JOIN I_QltyTskCode AS _QltyTskCode ON QualityTaskCodeGroup = _QltyTskCode.QualityTaskCodeGroup  -- association [0..*]
;