ARS_U_SNAP

DDL: ARS_U_SNAP Type: view_entity

API Release: Snapshot Header UNION

ARS_U_SNAP is a CDS View that provides data about "API Release: Snapshot Header UNION" in SAP S/4HANA. It reads from 3 data sources (ars_l_snap, ARS_V_SNAPSHOT_CURRENT_VERSION, ars_w_snap) and exposes 10 fields with key fields api_context, counter, counter.

Data Sources (3)

SourceAliasJoin Type
ars_l_snap ars_l_snap from
ARS_V_SNAPSHOT_CURRENT_VERSION current_version inner
ars_w_snap snapshot union

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label API Release: Snapshot Header UNION view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY api_context api_context
KEY counter counter Version
created_by created_by Version Created By
created_on created_on Variant created on
created_at created_at Uploaded On
KEY counter Version
created_by ars_w_snap created_by Version Created By
created_on ars_w_snap created_on Variant created on
created_at ars_w_snap created_at Uploaded On
storage

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_U_SNAP.
-- 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.

CREATE VIEW ARS_U_SNAP AS
SELECT
  api_context,
  counter,
  created_by,
  created_on,
  created_at,
  cast('W' as ars_snapshot_storage) AS storage
FROM ars_l_snap
INNER JOIN ARS_V_SNAPSHOT_CURRENT_VERSION AS current_version ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): ars_w_snap
;