I_EHSClassifierRoot

DDL: I_EHSCLASSIFIERROOT SQL: IEHSCLSFROOT Type: view BASIC

EHS Classifier

I_EHSClassifierRoot is a Basic CDS View that provides data about "EHS Classifier" in SAP S/4HANA. It reads from 1 data source (ehfndd_clsf_rt) and exposes 5 fields with key field EHSClassifierUUID.

Data Sources (1)

SourceAliasJoin Type
ehfndd_clsf_rt ehfndd_clsf_rt from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IEHSCLSFROOT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label EHS Classifier view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY EHSClassifierUUID db_key
EHSLocClassifierID bco_id
EHSLocClassifierCentralID bco_key
ClassifierMigrationSource migration_src
EHSLocClassifierType
@AbapCatalog.sqlViewName: 'IEHSCLSFROOT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'EHS Classifier'
@VDM.viewType: #BASIC
// Client handling by session

@ClientHandling.algorithm: #SESSION_VARIABLE
// used for BOBF Master Data Object

@ObjectModel.usageType:{ serviceQuality: #C,        // < 15 msec

                         sizeCategory:  #S,         // < 1.000

                         dataClass: #MASTER }

define view I_EHSClassifierRoot
  as select from ehfndd_clsf_rt
{
  key db_key                                              as EHSClassifierUUID,
      bco_id                                              as EHSLocClassifierID,
      bco_key                                             as EHSLocClassifierCentralID,
      migration_src                                       as ClassifierMigrationSource,
      cast( type as ehfnd_clsf_type_vdm preserving type ) as EHSLocClassifierType
}