atov_cl_import_status_in_prod

DDL: ATOV_CL_IMPORT_STATUS_IN_PROD Type: view_entity

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).

Data Sources (2)

SourceAliasJoin Type
ato_changelists changelist from
ato_cmn_requests request_status inner

Annotations (6)

NameValueLevelField
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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATO_CHANGELISTS",
"ATO_CMN_REQUESTS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/