ViewProvAnnotatedCDSViews
CDS View Provisioning scope for annoted CDS views
ViewProvAnnotatedCDSViews is a CDS View that provides data about "CDS View Provisioning scope for annoted CDS views" in SAP S/4HANA. It reads from 2 data sources (ddddlsrct, ViewProvFilterAnnotation) and exposes 4 fields with key field ViewName.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| ddddlsrct | _dddlsrc | left_outer |
| ViewProvFilterAnnotation | _vpa | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| p_ddlanguage | ddlanguage |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ANOCDSVIEWS | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.type | #CLIENT_INDEPENDENT | view | |
| ClientHandling.algorithm | #NONE | view | |
| EndUserText.label | CDS View Provisioning scope for annoted CDS views | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ViewName | ViewProvFilterAnnotation | ddlname | |
| entityname | ViewProvFilterAnnotation | entityname | ||
| ViewAnnotation | ViewProvFilterAnnotation | annoname | ||
| Description | ddddlsrct | ddtext |
@AbapCatalog.sqlViewName: 'ANOCDSVIEWS'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.type: #CLIENT_INDEPENDENT
@ClientHandling.algorithm: #NONE
@EndUserText.label: 'CDS View Provisioning scope for annoted CDS views'
define view ViewProvAnnotatedCDSViews
with parameters
p_ddlanguage : ddlanguage as select from ViewProvFilterAnnotation as _vpa
left outer join ddddlsrct as _dddlsrc on _dddlsrc.ddlname = _vpa.ddlname
{
//ViewProvFilterAnnotation
key _vpa.ddlname as ViewName,
_vpa.entityname,
_vpa.annoname as ViewAnnotation,
_dddlsrc.ddtext as Description
} where _dddlsrc.ddlanguage = $parameters.p_ddlanguage and _dddlsrc.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"VIEWPROVFILTERANNOTATION",
"DDDDLSRCT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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