ATOV_ITEM_PREFIX_SETTINGS

DDL: ATOV_ITEM_PREFIX_SETTINGS SQL: ATO_V_IPS Type: view

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)

SourceAliasJoin Type
ato_item_header header from
ato_prefix_set setting left_outer

Annotations (6)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}
}*/