ABAP_DOCU_RELEASED_APIS

DDL: ABAP_DOCU_RELEASED_APIS Type: view_entity

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)

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