I_EHSForecastMethod

DDL: I_EHSFORECASTMETHOD SQL: IEHSFCSTM Type: view BASIC

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.

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

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'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_EHSFORECASTMETHODTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/