I_EHSClassifierRoot

DDL: I_EHSCLASSIFIERROOT SQL: IEHSCLSFROOT Type: view BASIC Package: EHFND_BO_CLASSIFIER

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. Part of development package EHFND_BO_CLASSIFIER.

Data Sources (1)

SourceAliasJoin Type
ehfndd_clsf_rt ehfndd_clsf_rt from

Annotations (9)

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

Fields (5)

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

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

@ObjectModel.usageType:{ serviceQuality: #A,        
                         sizeCategory:  #S,         
                         dataClass: #MASTER }

define view I_EHSClassifierRoot
  as select from ehfndd_clsf_rt
{
  key cast( db_key as ehfnd_clsf_key_ref_nc preserving type ) 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
}