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.
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
}
where
release_state = 'RELEASED'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ARS_RUNTIME_API_STATE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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