Ars_Ship_Snapshot_Key

DDL: ARS_SHIP_SNAPSHOT_KEY SQL: ARSV_SNAPK Type: view Package: S_ARS_LM

Key of Latest Snapshot Version

Ars_Ship_Snapshot_Key is a CDS View that provides data about "Key of Latest Snapshot Version" in SAP S/4HANA. It reads from 1 data source (ars_ship_snap) and exposes 2 fields with key field sw_component. Part of development package S_ARS_LM.

Data Sources (1)

SourceAliasJoin Type
ars_ship_snap snapshot from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName ARSV_SNAPK view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Key of Latest Snapshot Version view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY sw_component ars_ship_snap sw_component Softw. Comp.
created_at

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 Ars_Ship_Snapshot_Key.
-- 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: ARSV_SNAPK

CREATE VIEW Ars_Ship_Snapshot_Key AS
SELECT
  snapshot.sw_component AS sw_component,
  max ( snapshot.created_at ) AS created_at
FROM ars_ship_snap AS snapshot
;