ARS_U_API_VERSION_API

DDL: ARS_U_API_VERSION_API Type: view_entity

API Release: API Version – API (UNION)

ARS_U_API_VERSION_API is a CDS View that provides data about "API Release: API Version – API (UNION)" in SAP S/4HANA. It reads from 2 data sources (ARS_V_API_VERSION_API_L, ARS_V_API_VERSION_API) and exposes 7 fields with key fields object_type, object_name, counter, object_name, counter.

Data Sources (2)

SourceAliasJoin Type
ARS_V_API_VERSION_API_L local from
ARS_V_API_VERSION_API transportable union_all

Annotations (6)

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

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY object_type object_type Type
KEY object_name object_name Technical Name
KEY counter counter Version
object_type Type
KEY object_name ARS_V_API_VERSION_API object_name Technical Name
KEY counter ARS_V_API_VERSION_API counter Version
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_API_VERSION_API.
-- 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_API_VERSION_API AS
SELECT
  object_type,
  object_name,
  counter,
  cast('W' as ars_snapshot_storage) AS storage
FROM ARS_V_API_VERSION_API_L AS local
-- UNION ALL with additional select branch(es): ARS_V_API_VERSION_API
;