ATOV_U_ITEM_BASE_S

DDL: ATOV_U_ITEM_BASE_S SQL: ATO_V_U_IBS Type: view

All items / small base view

ATOV_U_ITEM_BASE_S is a CDS View that provides data about "All items / small base view" in SAP S/4HANA. It reads from 2 data sources (ATOV_ITEM_VER_MAX, ato_pk_items) and exposes 8 fields with key fields item_type, item_id, item_id.

Data Sources (2)

SourceAliasJoin Type
ATOV_ITEM_VER_MAX ColItem from
ato_pk_items PkItem union_all

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_U_IBS view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label All items / small base view view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY item_type ATOV_ITEM_VER_MAX item_type Type
KEY item_id ATOV_ITEM_VER_MAX item_id Simulation Item ID
changed_at ATOV_ITEM_VER_MAX changed_at Time Stamp
changed_by ATOV_ITEM_VER_MAX changed_by User Name
item_type Type
KEY item_id ato_pk_items item_id Simulation Item ID
changed_at ato_pk_items last_notification Time Stamp
changed_by ato_pk_items changed_by User Name

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_U_ITEM_BASE_S.
-- 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_U_IBS

CREATE VIEW ATOV_U_ITEM_BASE_S AS
SELECT
  ColItem.item_type AS item_type,
  ColItem.item_id AS item_id,
  ColItem.changed_at AS changed_at,
  ColItem.changed_by AS changed_by
FROM ATOV_ITEM_VER_MAX AS ColItem
-- UNION ALL with additional select branch(es): ato_pk_items
;