ATOV_CMN_RID_OF_SUCESS_FORWARD

DDL: ATOV_CMN_RID_OF_SUCESS_FORWARD Type: view_entity

Common Import: Get import channel

ATOV_CMN_RID_OF_SUCESS_FORWARD is a CDS View that provides data about "Common Import: Get import channel" in SAP S/4HANA. It reads from 1 data source (ato_col_versions) and exposes 1 field.

Data Sources (1)

SourceAliasJoin Type
ato_col_versions col_versions from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Common Import: Get import channel view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (1)

KeyFieldSource TableSource FieldDescription
resource_id ato_col_versions resource_id
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Common Import: Get import channel'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}

// Get resource id of successful collection versions with timestamp = 0

define view entity ATOV_CMN_RID_OF_SUCESS_FORWARD
  as select from ato_col_versions as col_versions

{
  key col_versions.collection_id,
  key col_versions.version          as collection_version,

      col_versions.resource_id

}
where
      col_versions.action        = 'F' // Forward

  and col_versions.action_status = 'S' // Successful

  and col_versions.timestamp     =  0  // No max logic

  and col_versions.resource_id   <> 0  
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATO_COL_VERSIONS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/