I_PT_SeriesTypeCodeVH
Series Type
I_PT_SeriesTypeCodeVH is a Basic CDS View (Dimension) that provides data about "Series Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 4 fields with key field PT_SeriesTypeCode. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_PT_SeriesTypeCodeText | _Text | $projection.DomainValueLow = _Text.PT_SeriesTypeCode |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Series Type | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | PT_SeriesTypeCode | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PT_SeriesTypeCode | Series Type Code | ||
| DomainValueLow | domvalue_l | |||
| PT_SeriesTypeCodeText | _Text | PT_SeriesTypeCodeText | Series Type Code Text | |
| _Text | _Text |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Series Type'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #B,
sizeCategory: #M,
dataClass: #MASTER
}
@VDM.viewType: #BASIC
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'PT_SeriesTypeCode'
define view entity I_PT_SeriesTypeCodeVH
as select from dd07l
association [0..1] to I_PT_SeriesTypeCodeText as _Text on $projection.DomainValueLow = _Text.PT_SeriesTypeCode
{
@EndUserText.label: 'Series Type Code'
key cast( dd07l.domvalue_l as glo_pt_series_tc ) as PT_SeriesTypeCode,
@UI.hidden: true
domvalue_l as DomainValueLow,
@EndUserText.label: 'Series Type Code Text'
_Text.PT_SeriesTypeCodeText as PT_SeriesTypeCodeText,
_Text
}
where
domname = 'GLO_PT_SERIES_TC'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PT_SERIESTYPECODETEXT",
"DD07L"
],
"ASSOCIATED":
[
"I_PT_SERIESTYPECODETEXT"
],
"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