ATOV_ITEM_PREFIX_SETTINGS
Join Item Prefix and Settings
ATOV_ITEM_PREFIX_SETTINGS is a CDS View that provides data about "Join Item Prefix and Settings" in SAP S/4HANA. It reads from 2 data sources (ato_item_header, ato_prefix_set) and exposes 4 fields with key fields item_type, item_id.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| ato_item_header | header | from |
| ato_prefix_set | setting | left_outer |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ATO_V_IPS | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Join Item Prefix and Settings | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | item_type | ato_item_header | item_type | |
| KEY | item_id | ato_item_header | item_id | |
| prefix | ato_item_header | prefix | ||
| category |
@AbapCatalog.sqlViewName: 'ATO_V_IPS'
@ClientHandling:{ type: #INHERITED, algorithm: #SESSION_VARIABLE }
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Join Item Prefix and Settings'
define view ATOV_ITEM_PREFIX_SETTINGS
as select from ato_item_header as header
left outer join ato_prefix_set as setting on setting.dev_prefix = header.prefix
{
key header.item_type,
key header.item_id,
header.prefix,
coalesce( setting.category, '' ) as category,
coalesce( setting.is_change_items_allowed, '' ) as is_change_items_allowed
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ATO_ITEM_HEADER",
"ATO_PREFIX_SET"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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