I_SubstanceText
Substance multilingual Name
I_SubstanceText is a Basic CDS View that provides data about "Substance multilingual Name" in SAP S/4HANA. It reads from 1 data source (ehfndv_sub_t) and exposes 5 fields with key fields SubstanceUUID, Language. It has 2 associations to related views. Part of development package EHFND_BO_SUBSTANCE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehfndv_sub_t | text | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_Substance | _Substance | $projection.SubstanceUUID = _Substance.SubstanceUUID |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Substance multilingual Name | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ISUBT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.representativeKey | SubstanceUUID | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SubstanceUUID | ehfndv_sub_t | substanceuuid | |
| KEY | Language | ehfndv_sub_t | language | |
| SubstanceName | ehfndv_sub_t | substancename | ||
| _Language | _Language | |||
| _Substance | _Substance |
@EndUserText.label: 'Substance multilingual Name'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
sqlViewName: 'ISUBT',
compiler.compareFilter: true
}
@ObjectModel: {
dataCategory: #TEXT,
usageType: {
serviceQuality: #C,
dataClass: #MASTER,
sizeCategory: #M
},
representativeKey: 'SubstanceUUID'
}
define view I_SubstanceText
as select from ehfndv_sub_t as text
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
// needed for DCL
association [1..1] to I_Substance as _Substance on $projection.SubstanceUUID = _Substance.SubstanceUUID
{
key text.substanceuuid as SubstanceUUID,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key text.language as Language,
@Semantics.text: true
text.substancename as SubstanceName,
//exposed associations
_Language,
_Substance
}
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