VB_CDSVDMTYPE_VIEWS
vdm type
VB_CDSVDMTYPE_VIEWS is a CDS View that provides data about "vdm type" in SAP S/4HANA. It reads from 1 data source (ddheadanno) and exposes 2 fields with key fields CDSName, CdsViewType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ddheadanno | ddheadanno | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | VBCDSVDMTYP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | vdm type | view | |
| ObjectModel.usageType.serviceQuality | #P | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CDSName | strucobjn | ||
| KEY | CdsViewType | value |
@AbapCatalog.sqlViewName: 'VBCDSVDMTYP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'vdm type'
@ObjectModel.usageType.serviceQuality: #P
define view VB_CDSVDMTYPE_VIEWS as select from ddheadanno
{
key strucobjn as CDSName ,
key value as CdsViewType
} where ddheadanno.name = 'VDM.VIEWTYPE' and
( ddheadanno.value = '#BASIC' or
ddheadanno.value = '#COMPOSITE' or
ddheadanno.value = '#CONSUMPTION' or
ddheadanno.value = '#EXTENSION' or
ddheadanno.value = '#TRANSACTIONAL' )
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DDHEADANNO"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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