ATOV_ADDON_REWORK_TASK
Rewrk task for itm in software component
ATOV_ADDON_REWORK_TASK is a CDS View that provides data about "Rewrk task for itm in software component" in SAP S/4HANA. It reads from 3 data sources (ato_col_items, ato_cols, ato_rework_task) and exposes 9 fields with key field task_id. Part of development package S_ATO_REWORK.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| ato_col_items | Collection_Items | inner |
| ato_cols | Collections | inner |
| ato_rework_task | Rework_Tasks | from |
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Rewrk task for itm in software component | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | task_id | ato_rework_task | task_id | |
| item_type | ato_rework_task | item_type | ||
| item_id | ato_rework_task | item_id | ||
| msgid | ato_rework_task | msgid | ||
| msgno | ato_rework_task | msgno | ||
| msgv1 | ato_rework_task | msgv1 | ||
| msgv2 | ato_rework_task | msgv2 | ||
| msgv3 | ato_rework_task | msgv3 | ||
| msgv4 | ato_rework_task | msgv4 |
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Rewrk task for itm in software component'
@Metadata.ignorePropagatedAnnotations: true
define view entity ATOV_ADDON_REWORK_TASK
as select from ato_rework_task as Rework_Tasks
inner join ato_col_items as Collection_Items on Rework_Tasks.item_id = Collection_Items.item_id
and Rework_Tasks.item_type = Collection_Items.item_type
inner join ato_cols as Collections on Collection_Items.collection_id = Collections.collection_id
{
key Rework_Tasks.task_id,
Collections.software_component,
Collections.collection_id,
Rework_Tasks.item_type,
Rework_Tasks.item_id,
Rework_Tasks.msgid,
Rework_Tasks.msgno,
Rework_Tasks.msgv1,
Rework_Tasks.msgv2,
Rework_Tasks.msgv3,
Rework_Tasks.msgv4
}
where
Rework_Tasks.priority = 1
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA