I_EHSJobType
EHS Job Type
I_EHSJobType is a Basic CDS View that provides data about "EHS Job Type" in SAP S/4HANA. It reads from 1 data source (ehhssc_job_typ) and exposes 2 fields with key field EHSJobType. It has 1 association to related views. Part of development package EHHSS_BO_JOB_CFG.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehhssc_job_typ | ehhssc_job_typ | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_EHSJobTypeText | _Text | $projection.EHSJobType = _Text.EHSJobType |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | EHSJobType | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IEHSJOBTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| EndUserText.label | EHS Job Type | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EHSJobType | |||
| _Text | _Text |
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'EHSJobType'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IEHSJOBTYPE'
@AbapCatalog.compiler.compareFilter: true
// Client handling by session
@ClientHandling.algorithm: #SESSION_VARIABLE
// used for BOBF Master Data Object
@ObjectModel.usageType:{ serviceQuality: #C, // < 15 msec
sizeCategory: #S, // < 10.000.000
dataClass: #CUSTOMIZING }
@EndUserText.label: 'EHS Job Type'
define view I_EHSJobType as select from ehhssc_job_typ
association [0..*] to I_EHSJobTypeText as _Text on $projection.EHSJobType = _Text.EHSJobType
{
@ObjectModel.text.association: '_Text'
key cast( ehhssc_job_typ.code as ehhss_job_type_code_nc preserving type ) as EHSJobType,
_Text
}
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