atov_cl_import_status_in_prod
Changelists
atov_cl_import_status_in_prod is a CDS View that provides data about "Changelists" in SAP S/4HANA. It reads from 2 data sources (ato_changelists, ato_cmn_requests). Part of development package S_ATO_COL_CORE.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| ato_changelists | changelist | from |
| ato_cmn_requests | request_status | inner |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Changelists | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Changelists'' import status in production'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity atov_cl_import_status_in_prod
as select from ato_changelists as changelist
inner join ato_cmn_requests as request_status on changelist.transport = request_status.request
{
key changelist.changelist_id,
changelist.collection_id,
changelist.collection_version,
request_status.production_system_state
}
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