ALL_CDS_SQL_VIEWS
SQL view name of all cds views
ALL_CDS_SQL_VIEWS is a CDS View that provides data about "SQL view name of all cds views" in SAP S/4HANA. It reads from 1 data source (ddldependency) and exposes 2 fields with key field DDLSourceName. Part of development package S_ANA_BEX_LAS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ddldependency | ddldependency | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ALLCDSSQLVIEWS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | SQL view name of all cds views | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DDLSourceName | ddldependency | ddlname | |
| SQLViewName | ddldependency | objectname |
@AbapCatalog.sqlViewName: 'ALLCDSSQLVIEWS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #P
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'SQL view name of all cds views'
define view ALL_CDS_SQL_VIEWS as select from ddldependency {
key ddldependency.ddlname as DDLSourceName,
ddldependency.objectname as SQLViewName
} where ddldependency.state = 'A' and ddldependency.objecttype = 'VIEW'
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