A_CurrentEHSAgentNameText
Current EHS Agent Name Text
A_CurrentEHSAgentNameText is a Composite CDS View that provides data about "Current EHS Agent Name Text" in SAP S/4HANA. It reads from 1 data source (I_EHSAgentNameText) and exposes 5 fields with key fields EHSAgentUUID, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_EHSAgentNameText | I_EHSAgentNameText | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | AEHSCAGTNAMET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Current EHS Agent Name Text | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | EHSAgentUUID | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EHSAgentUUID | EHSAgentUUID | ||
| KEY | Language | Language | ||
| LanguageISOCode | _Language | LanguageISOCode | ||
| EHSAgentName | EHSAgentName | |||
| EHSAgentType | EHSAgentType |
@AbapCatalog.sqlViewName: 'AEHSCAGTNAMET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Current EHS Agent Name Text'
@VDM.viewType: #COMPOSITE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'EHSAgentUUID'
// Client handling by session
@ClientHandling.algorithm: #SESSION_VARIABLE
// used for BOBF Master Data Object
@ObjectModel.usageType:{ serviceQuality: #C, // < 15 msec
sizeCategory: #L, // < 10.000.000
dataClass: #MASTER }
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view A_CurrentEHSAgentNameText as select from I_EHSAgentNameText {
key EHSAgentUUID,
@Semantics.language: true
key Language,
_Language.LanguageISOCode,
@Semantics.text:true
EHSAgentName,
EHSAgentType
} where RevisionStartDate <= $session.system_date
and RevisionEndDate >= $session.system_date
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_EHSAGENTNAMETEXT",
"I_LANGUAGE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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