I_CurrentEHSAgentNameText
Current Agent Name
I_CurrentEHSAgentNameText is a Composite CDS View that provides data about "Current Agent Name" in SAP S/4HANA. It reads from 1 data source (I_EHSAgentNameText) and exposes 4 fields with key fields EHSAgentUUID, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_EHSAgentNameText | I_EHSAgentNameText | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Current Agent Name | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | EHSAgentUUID | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IEHSCAGTNAMET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EHSAgentUUID | EHSAgentUUID | ||
| KEY | Language | Language | ||
| _Language | _Language | |||
| EHSAgentName | EHSAgentName |
@EndUserText.label: 'Current Agent Name'
@Analytics.dataExtraction.enabled:true
@VDM.viewType: #COMPOSITE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'EHSAgentUUID'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IEHSCAGTNAMET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
// 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 }
define view I_CurrentEHSAgentNameText as select from I_EHSAgentNameText {
key EHSAgentUUID,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key Language,
_Language,
@Semantics.text:true
EHSAgentName
} where
RevisionStartDate <= $session.system_date
and RevisionEndDate >= $session.system_date
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_EHSAGENTNAMETEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[
"I_EHSAGENTNAMETEXT"
],
"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