I_EHSForecastMethod

DDL: I_EHSFORECASTMETHOD SQL: IEHSFCSTM Type: view BASIC Package: EHENV_FW_EMISSION_FORECAST

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)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EHSForecastMethodText _Text $projection.EHSForecastMethod = _Text.EHSForecastMethod

Annotations (11)

NameValueLevelField
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)

ServiceBindingVersionContractRelease
ENVRMTEMISSIONFORECAST ENVRMTEMISSIONFORECAST V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
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)

KeyFieldSource TableSource FieldDescription
_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'