ATOV_ADDON_REWORK_TASK

DDL: ATOV_ADDON_REWORK_TASK Type: view_entity Package: S_ATO_REWORK

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)

SourceAliasJoin Type
ato_col_items Collection_Items inner
ato_cols Collections inner
ato_rework_task Rework_Tasks from

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Rewrk task for itm in software component view
Metadata.ignorePropagatedAnnotations true view

Fields (9)

KeyFieldSource TableSource FieldDescription
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