C_QltyTaskProcDefectInfoLongT

DDL: C_QLTYTASKPROCDEFECTINFOLONGT Type: view_entity CONSUMPTION Package: ODATA_QM_TASK

Defect Long Text for Quality Task

C_QltyTaskProcDefectInfoLongT is a Consumption CDS View that provides data about "Defect Long Text for Quality Task" in SAP S/4HANA. It reads from 1 data source (I_DefectLongText) and exposes 6 fields with key fields DefectInternalID, Language. Part of development package ODATA_QM_TASK.

Data Sources (1)

SourceAliasJoin Type
I_DefectLongText I_DefectLongText from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
EndUserText.label Defect Long Text for Quality Task view
ObjectModel.representativeKey DefectInternalID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
Analytics.technicalName CQLTYTSKPRCDILT view
Metadata.allowExtensions true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY DefectInternalID DefectInternalID Internal Defect ID
KEY Language Language Report Text Language
ItemCounter LongTextInternalNumber
LongTextID LongTextID Text ID
DefectLongText DefectLongText
_Defect _Defect

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 C_QltyTaskProcDefectInfoLongT.
-- 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 C_QltyTaskProcDefectInfoLongT AS
SELECT
  DefectInternalID,
  Language,
  LongTextInternalNumber AS ItemCounter,
  LongTextID,
  DefectLongText
FROM I_DefectLongText
;