I_EHSClassifierRoot
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)
| Source | Alias | Join Type |
|---|---|---|
| ehfndd_clsf_rt | ehfndd_clsf_rt | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA