I_DefectCauseCodeGroupText

DDL: I_DEFECTCAUSECODEGROUPTEXT SQL: IDEFCACODEGRPT Type: view BASIC

Defect Cause Code Group Text

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

Data Sources (1)

SourceAliasJoin Type
qpgt qpgt from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_DefectCauseCodeGroup _DefectCauseCodeGroup $projection.DefectCauseCodeGroup = _DefectCauseCodeGroup.DefectCauseCodeGroup

Annotations (14)

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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DefectCauseCodeGroup
KEY Language qpgt sprache Language
DefectCauseCodeGroupText
_DefectCauseCodeGroup _DefectCauseCodeGroup

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_DefectCauseCodeGroupText.
-- 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: IDEFCACODEGRPT

CREATE VIEW I_DefectCauseCodeGroupText AS
SELECT
  cast( qpgt.codegruppe as vdm_qfecausegrp preserving type ) AS DefectCauseCodeGroup,
  qpgt.sprache AS Language,
  cast( qpgt.kurztext as vdm_qfecausegrp_text preserving type ) AS DefectCauseCodeGroupText
FROM qpgt
LEFT OUTER JOIN I_DefectCauseCodeGroup AS _DefectCauseCodeGroup ON DefectCauseCodeGroup = _DefectCauseCodeGroup.DefectCauseCodeGroup  -- association [1..1]
;