APS_V_RCV_SQLVIEW_LIST
Get List of SQL View Names
APS_V_RCV_SQLVIEW_LIST is a CDS View that provides data about "Get List of SQL View Names" in SAP S/4HANA. It reads from 1 data source (ddldependency) and exposes 3 fields with key fields DDLSourceName, SQLViewName, state. Part of development package S_APS_ODATA_REPAIR_CDS_APP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ddldependency | ddldependency | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | V_RCV_SQLVIEW | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Get List of SQL View Names | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DDLSourceName | ddldependency | ddlname | |
| KEY | SQLViewName | ddldependency | objectname | |
| KEY | state | ddldependency | state |
@AbapCatalog.sqlViewName: 'V_RCV_SQLVIEW'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Get List of SQL View Names'
define view APS_V_RCV_SQLVIEW_LIST as select from ddldependency {
key ddldependency.ddlname as DDLSourceName,
key ddldependency.objectname as SQLViewName,
key ddldependency.state
} where 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