P_PeriodTypeVH
Period Type Value Help
P_PeriodTypeVH is a Basic CDS View that provides data about "Period Type Value Help" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field PeriodKey. Part of development package ODATA_MM_IM_STOCKVALUETIMES.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PeriodKey | |||
| PeriodText | ddtext |
@AccessControl.authorizationCheck: #CHECK
@ObjectModel: {
usageType:{
sizeCategory: #S,
serviceQuality: #B,
dataClass:#TRANSACTIONAL
}
}
@VDM: {
viewType: #BASIC,
private: true
}
define view entity P_PeriodTypeVH as select from dd07t {
@ObjectModel.text.element: ['PeriodText']
key cast( domvalue_l as nsdm_period_type ) as PeriodKey,
@Semantics.text: true
ddtext as PeriodText
}
where domname = 'NSDM_PERIOD_TYPE'
and (domvalue_l = 'Q'
or domvalue_l = 'Y'
or domvalue_l = 'M'
or domvalue_l = 'W')
and ddlanguage = $session.system_language
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