I_EHSForecastMethod
EHS Forecast Method
I_EHSForecastMethod is a Basic CDS View that provides data about "EHS Forecast Method" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 1 field. It has 1 association to related views. It is exposed through 1 OData service (ENVRMTEMISSIONFORECAST). It is used in 1 Fiori application: Emission Forecast. Part of development package EHENV_FW_EMISSION_FORECAST.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_EHSForecastMethodText | _Text | $projection.EHSForecastMethod = _Text.EHSForecastMethod |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IEHSFCSTM | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | EHS Forecast Method | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | EHSForecastMethod | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #META | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| ENVRMTEMISSIONFORECAST | ENVRMTEMISSIONFORECAST | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F4332 | Emission Forecast | Analytical |
Emission Forecast
Business Role: Environmental Manager
With this app, you can forecast emission data based on past emission data with the help of predictive learning algorithms and statistical methods. Additionally, you can compare the forecasted emission data against the environmental limits. By getting early indication of future deviations or noncompliance, you can plan proactively to avoid potentially unwanted events.
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IEHSFCSTM'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'EHS Forecast Method'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel : {
representativeKey: 'EHSForecastMethod',
usageType: {serviceQuality: #C,
sizeCategory: #L,
dataClass: #META} }
//@ObjectModel.dataCategory: #VALUE_HELP
//@ObjectModel.resultSet.sizeCategory: #XS //This qualifies it as DropDown
define view I_EHSForecastMethod
as select from dd07l
association [0..*] to I_EHSForecastMethodText as _Text on $projection.EHSForecastMethod = _Text.EHSForecastMethod
{
@ObjectModel.text.association: '_Text'
key cast( dd07l.domvalue_l as ehenv_prediction_type ) as EHSForecastMethod,
// association
_Text
}
where
dd07l.domname = 'EHENV_PREDICTION_TYPE'
and dd07l.as4local = 'A'
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