I_APIsForCloudDevelopment
APIs for Use in Cloud Development
I_APIsForCloudDevelopment is a CDS View that provides data about "APIs for Use in Cloud Development" in SAP S/4HANA. It reads from 1 data source (ARS_APIS_RELEASED_FOR_C1_SCP) and exposes 6 fields with key fields ReleasedObjectType, ReleasedObjectName, ObjectDirectoryType, ObjectDirectoryName.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ARS_APIS_RELEASED_FOR_C1_SCP | ARS_APIS_RELEASED_FOR_C1_SCP | from |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | I_API_CLD_DEV | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | APIs for Use in Cloud Development | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ReleasedObjectType | object_type | ||
| KEY | ReleasedObjectName | object_key | ||
| KEY | ObjectDirectoryType | tadir_object | ||
| KEY | ObjectDirectoryName | tadir_obj_name | ||
| ReleaseState | state | |||
| ReleaseStateDescription | state_description |
@AbapCatalog.sqlViewName: 'I_API_CLD_DEV'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'APIs for Use in Cloud Development'
define view I_APIsForCloudDevelopment
as select from ARS_APIS_RELEASED_FOR_C1_SCP
{
key object_type as ReleasedObjectType,
key object_key as ReleasedObjectName,
key tadir_object as ObjectDirectoryType,
key tadir_obj_name as ObjectDirectoryName,
state as ReleaseState,
state_description as ReleaseStateDescription
}
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