I_EHSLocationTypeText

DDL: I_EHSLOCATIONTYPETEXT Type: view BASIC Package: EHFND_BO_LOC_CFG

EHS Location Type - Text

I_EHSLocationTypeText is a Basic CDS View that provides data about "EHS Location Type - Text" in SAP S/4HANA. It reads from 1 data source (ehfndc_loc_typ_t) and exposes 4 fields with key fields EHSLocationType, Language. It has 1 association to related views. Part of development package EHFND_BO_LOC_CFG.

Data Sources (1)

SourceAliasJoin Type
ehfndc_loc_typ_t ehfndc_loc_typ_t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (18)

NameValueLevelField
EndUserText.label EHS Location Type - Text view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ILOCTYPETEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 2 view
AbapCatalog.buffering.status #ACTIVE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey EHSLocationType view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.modelingPattern #NONE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EHSLocationType
KEY Language
EHSLocationTypeText
_Language _Language
@EndUserText.label: 'EHS Location Type - Text'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: { sqlViewName: 'ILOCTYPETEXT',
                compiler.compareFilter: true,
                buffering: { type: #GENERIC,
                             numberOfKeyFields: 2,
                             status: #ACTIVE } }

@ObjectModel: { dataCategory: #TEXT,
                representativeKey: 'EHSLocationType',
                resultSet.sizeCategory: #XS,
                supportedCapabilities: [ #EXTRACTION_DATA_SOURCE ],
                modelingPattern: #NONE,
                usageType:{ serviceQuality: #A,
                            sizeCategory:  #S,         // < 1.000

                            dataClass: #CUSTOMIZING } }

@Metadata.ignorePropagatedAnnotations:true
define view I_EHSLocationTypeText
  as select from ehfndc_loc_typ_t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key cast( code as ehfnd_loc_type_code_nc preserving type )     as EHSLocationType,

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast( language as ehfnd_langu preserving type )            as Language,

      @Semantics.text:true
      cast( description as ehfnd_loc_type_name preserving type ) as EHSLocationTypeText,

      _Language
}