I_PhysicalAgentNameText
Physical Agent Text
I_PhysicalAgentNameText is a Basic CDS View that provides data about "Physical Agent Text" in SAP S/4HANA. It reads from 1 data source (ehhssd_agt_name) and exposes 5 fields with key fields PhysicalAgentUUID, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehhssd_agt_name | ehhssd_agt_name | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Physical Agent Text | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | PhysicalAgentUUID | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IAGTNAMET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PhysicalAgentUUID | |||
| KEY | Language | |||
| _Language | _Language | |||
| PhysicalAgentNameUUID | db_key | |||
| PhysicalAgentName |
@EndUserText.label: 'Physical Agent Text'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'PhysicalAgentUUID'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IAGTNAMET'
@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, // < 1000
dataClass: #MASTER }
define view I_PhysicalAgentNameText as select from ehhssd_agt_name
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast( parent_key as ehhss_agent_key_ref preserving type ) as PhysicalAgentUUID,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast( language as sylangu preserving type ) as Language,
_Language,
db_key as PhysicalAgentNameUUID,
@Semantics.text:true
cast( text as ehhss_agent_name ) as PhysicalAgentName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EHHSSD_AGT_NAME"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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