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 Type
KEY item_id ato_item_header item_id Simulation Item ID
prefix ato_item_header prefix SerialNo.Prefix
category

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view ATOV_ITEM_PREFIX_SETTINGS.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ATO_V_IPS

CREATE VIEW ATOV_ITEM_PREFIX_SETTINGS AS
SELECT
  header.item_type AS item_type,
  header.item_id AS item_id,
  header.prefix AS prefix,
  coalesce( setting.category, '' ) AS category
FROM ato_item_header AS header
LEFT OUTER JOIN ato_prefix_set AS setting ON /* join condition not captured in parsed metadata */
;