ABAP_DOCU_RELEASED_APIS
List of released APIs
ABAP_DOCU_RELEASED_APIS is a CDS View that provides data about "List of released APIs" in SAP S/4HANA. It reads from 1 data source (ARS_RUNTIME_API_STATE) and exposes 3 fields with key fields object_type, object_name. Part of development package SABAPDOCU_OBJECTS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ARS_RUNTIME_API_STATE | api | from |
Annotations (2)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | List of released APIs | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | object_type | object_type | ||
| KEY | object_name | object_name | ||
| contract | compatibility_contract |
@EndUserText.label: 'List of released APIs'
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view entity ABAP_DOCU_RELEASED_APIS
as select from ARS_RUNTIME_API_STATE as api
{
key object_type,
key object_name,
sub_object_type as subobject_type,
sub_object_name as subobject_name,
compatibility_contract as contract,
use_in_sap_cloud_platform as use_in_cloud_development,
use_in_key_user_apps,
release_state,
successor_object_type,
successor_object_name,
successor_sub_object_type,
successor_sub_object_name
}
where
release_state = 'RELEASED' or release_state = 'DEPRECATED'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA