ATOV_EXTSIBILITY_COLLECTION

DDL: ATOV_EXTSIBILITY_COLLECTION SQL: ATO_V_EXT_COL Type: view

Extensibility Collection

ATOV_EXTSIBILITY_COLLECTION is a CDS View that provides data about "Extensibility Collection" in SAP S/4HANA. It reads from 1 data source (ato_cols).

Data Sources (1)

SourceAliasJoin Type
ato_cols collection from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_EXT_COL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Extensibility Collection view
@AbapCatalog.sqlViewName: 'ATO_V_EXT_COL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Extensibility Collection'
define view ATOV_EXTSIBILITY_COLLECTION as select from ato_cols as collection 
{
key collection.collection_id,
    collection.description_text  
}
where collection.category <> 'L'        and
      collection.category <> 'B'        and
      collection.category <> 'T'        and // no templates      

      collection.status   <> 'H'        and
      collection.status   <> 'M'        and
      collection.collection_type =  'E' and
      ( collection.client   =  ''       or // Client independent collections EXT/DEV/CCC

        collection.client   = $session.client )// All in Import Systems with Project Clients   


/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATO_COLS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/