C_CustomCDSViewReworkTask

DDL: C_CUSTOMCDSVIEWREWORKTASK Type: view_entity

Custom CDS View Rework Tasks

C_CustomCDSViewReworkTask is a CDS View that provides data about "Custom CDS View Rework Tasks" in SAP S/4HANA. It reads from 1 data source (ATOV_REWORK_TASK) and exposes 19 fields with key fields Item_Id, Item_Type, Task_Id, Origin.

Data Sources (1)

SourceAliasJoin Type
ATOV_REWORK_TASK ATOV_REWORK_TASK from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Custom CDS View Rework Tasks view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY Item_Id Item_Id Simulation Item ID
KEY Item_Type Item_Type Type
KEY Task_Id Task_Id TaskID
KEY Origin Origin Task Origin
Msgid Msgid Message ID
Msgno Msgno Message Number
Msgv1 Msgv1 Message variable 1
Msgv2 Msgv2 Message variable 2
Msgv3 Msgv3 Message variable 3
Msgv4 Msgv4 Message variable 4
Priority Priority Workflow priority
Priority_Text Priority_Text Priority Description
Category Category Violation Category
Category_Text Category_Text Category Description
Updated_At Updated_At Version Update Time
First_Found First_Found Time Stamp
WithLongtext WithLongtext
Description
Longtext

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_CustomCDSViewReworkTask.
-- 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_CustomCDSViewReworkTask AS
SELECT
  Item_Id,
  Item_Type,
  Task_Id,
  Origin,
  Msgid,
  Msgno,
  Msgv1,
  Msgv2,
  Msgv3,
  Msgv4,
  Priority,
  Priority_Text,
  Category,
  Category_Text,
  Updated_At,
  First_Found,
  WithLongtext,
  cast( '' as abap.sstring(255) ) AS Description,
  abap.string'' AS Longtext
FROM ATOV_REWORK_TASK
;