ABAP_DOCU_RELEASED_APIS

DDL: ABAP_DOCU_RELEASED_APIS Type: view_entity Package: SABAPDOCU_OBJECTS

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)

SourceAliasJoin Type
ARS_RUNTIME_API_STATE api from

Annotations (2)

NameValueLevelField
EndUserText.label List of released APIs view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
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'