ATOV_EXIST_ITEM_TYPES
ato item types existing current system
ATOV_EXIST_ITEM_TYPES is a CDS View that provides data about "ato item types existing current system" in SAP S/4HANA. It reads from 2 data sources (ato_item_header, ato_pk_items).
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| ato_item_header | ato_item_header | union |
| ato_pk_items | ato_pk_items | from |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATOV_E_ITEM_TYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | ato item types existing current system | view |
@AbapCatalog.sqlViewName: 'ATOV_E_ITEM_TYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ato item types existing current system'
define view ATOV_EXIST_ITEM_TYPES
as select from ato_pk_items
{
item_type
}
union select from ato_item_header
{
item_type
}
where item_type <> '' // there was an error with an initial type
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATO_ITEM_HEADER",
"ATO_PK_ITEMS"
],
"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