I_EHSDataPeriod
EHS Data Period
I_EHSDataPeriod is a Basic CDS View that provides data about "EHS Data Period" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field EHSDataPeriod. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_EHSDataPeriodText | _Text | $projection.EHSDataPeriod = _Text.EHSDataPeriod |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IEHSDPERIOD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | EHS Data Period | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | EHSDataPeriod | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #META | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EHSDataPeriod | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IEHSDPERIOD'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'EHS Data Period'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel : { dataCategory: #TEXT,
representativeKey: 'EHSDataPeriod',
usageType: {serviceQuality: #C,
sizeCategory: #L,
dataClass: #META} }
define view I_EHSDataPeriod as select from dd07l
association [0..*] to I_EHSDataPeriodText as _Text on $projection.EHSDataPeriod = _Text.EHSDataPeriod {
@ObjectModel.text.association: '_Text'
key cast( dd07l.domvalue_l as abap.char( 3 ) ) as EHSDataPeriod,
// association
_Text
}
where dd07l.domname = 'EHENV_MDEF_PERIOD_CODE'
and dd07l.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_EHSDATAPERIODTEXT"
],
"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