SFDT_CP_CDS_RELEASED
Released CDS objects for BTP Rules usage
SFDT_CP_CDS_RELEASED is a CDS View that provides data about "Released CDS objects for BTP Rules usage" in SAP S/4HANA. It reads from 3 data sources (ARS_APIS_RELEASED_C1_OR_GROUPS, ARS_APIS_RELEASED_FOR_C1_SCP, ARS_OBJECTS_ALL_SW_COMP_SCP). Part of development package SFDT_CP.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| ARS_APIS_RELEASED_C1_OR_GROUPS | a | from |
| ARS_APIS_RELEASED_FOR_C1_SCP | a | union |
| ARS_OBJECTS_ALL_SW_COMP_SCP | a | union |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | VSFDTCPCDSREL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Released CDS objects for BTP Rules usage | view |
@AbapCatalog.sqlViewName: 'VSFDTCPCDSREL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Released CDS objects for BTP Rules usage'
define view SFDT_CP_CDS_RELEASED
as select from ARS_APIS_RELEASED_C1_OR_GROUPS as a
{
a.object_key
} where a.tadir_object = 'DDLS'
union select from ARS_APIS_RELEASED_FOR_C1_SCP as a
{
a.object_key
} where a.tadir_object = 'DDLS'
union select from ARS_OBJECTS_ALL_SW_COMP_SCP as a
{
a.object_name as object_key
} where a.object_type = 'DDLS'
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