C_QltyTaskDetailedDescription

DDL: C_QLTYTASKDETAILEDDESCRIPTION SQL: CQLTYTSKDTDESC Type: view CONSUMPTION

Quality Task Detailed Description

C_QltyTaskDetailedDescription is a Consumption CDS View that provides data about "Quality Task Detailed Description" in SAP S/4HANA. It reads from 1 data source (I_QualityTaskLongTextTP) and exposes 11 fields with key fields QualityTaskInternalId, Language, ItemCounter. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_QualityTaskLongTextTP I_QualityTaskLongTextTP from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_QualityTaskProcess _QualityTaskProcess $projection.QualityTaskInternalId = _QualityTaskProcess.QualityTaskInternalId

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName CQLTYTSKDTDESC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
EndUserText.label Quality Task Detailed Description view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey QualityTaskInternalId view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.compositionRoot false view
ObjectModel.transactionalProcessingDelegated true view
ObjectModel.draftEnabled true view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled false view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY QualityTaskInternalId QualityTaskInternalId
KEY Language Language Report Text Language
KEY ItemCounter ItemCounter Sequence
LongTextID LongTextID Text ID
QualityTaskLongText QualityTaskLongText
LongTextCreatedByUser LongTextCreatedByUser
LongTextCreatedAt LongTextCreatedAt
LongTextLastChangedByUser LongTextLastChangedByUser
LongTextLastChangedAt LongTextLastChangedAt
_Language _Language
_QualityTaskProcess _QualityTaskProcess

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_QltyTaskDetailedDescription.
-- 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: CQLTYTSKDTDESC

CREATE VIEW C_QltyTaskDetailedDescription AS
SELECT
  QualityTaskInternalId,
  Language,
  ItemCounter,
  LongTextID,
  QualityTaskLongText,
  LongTextCreatedByUser,
  LongTextCreatedAt,
  LongTextLastChangedByUser,
  LongTextLastChangedAt
FROM I_QualityTaskLongTextTP
LEFT OUTER JOIN C_QualityTaskProcess AS _QualityTaskProcess ON QualityTaskInternalId = _QualityTaskProcess.QualityTaskInternalId  -- association [1..1]
;