ARS_V_RECENT_SNAPSHOT

DDL: ARS_V_RECENT_SNAPSHOT SQL: ARS_V_RCNT_SNAP Type: view

API Release: Recent Snapshot

ARS_V_RECENT_SNAPSHOT is a CDS View that provides data about "API Release: Recent Snapshot" in SAP S/4HANA. It reads from 1 data source (ARS_V_SNAPSHOT) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
ARS_V_SNAPSHOT snapshot from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ARS_V_RCNT_SNAP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label API Release: Recent Snapshot view

Fields (4)

KeyFieldSource TableSource FieldDescription
counter ARS_V_SNAPSHOT counter Version
created_by ARS_V_SNAPSHOT created_by Version Created By
created_on ARS_V_SNAPSHOT created_on Variant created on
created_at ARS_V_SNAPSHOT created_at Uploaded On

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_V_RECENT_SNAPSHOT.
-- 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: ARS_V_RCNT_SNAP

CREATE VIEW ARS_V_RECENT_SNAPSHOT AS
SELECT
  snapshot.counter AS counter,
  snapshot.created_by AS created_by,
  snapshot.created_on AS created_on,
  snapshot.created_at AS created_at
FROM ARS_V_SNAPSHOT AS snapshot
;