ATOV_EXTSIBILITY_COLLECTION
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)
| Source | Alias | Join Type |
|---|---|---|
| ato_cols | collection | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| 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":""
}
}*/
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