I_SubstanceTradeSecretText
Substance Trade Secret Name - Text
I_SubstanceTradeSecretText is a Basic CDS View that provides data about "Substance Trade Secret Name - Text" in SAP S/4HANA. It reads from 1 data source (ehfndd_sub_ts_t) and exposes 5 fields with key fields SubstanceUUID, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ehfndd_sub_ts_t | tradeSecretText | 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 (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Substance Trade Secret Name - Text | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ISUBTST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | 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 | ehfndd_sub_ts_t | substanceuuid | |
| KEY | Language | ehfndd_sub_ts_t | language | |
| SubstanceTradeSecretName | ehfndd_sub_ts_t | substancetradesecretname | ||
| _Language | _Language | |||
| _Substance | _Substance |
@EndUserText.label: 'Substance Trade Secret Name - Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #MANDATORY
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
sqlViewName: 'ISUBTST',
compiler.compareFilter: true,
preserveKey: true
}
@ObjectModel: {
dataCategory: #TEXT,
usageType: {
serviceQuality: #C,
dataClass: #MASTER,
sizeCategory: #M
},
representativeKey: 'SubstanceUUID'
}
define view I_SubstanceTradeSecretText
as select from ehfndd_sub_ts_t as tradeSecretText
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 tradeSecretText.substanceuuid as SubstanceUUID,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key tradeSecretText.language as Language,
@Semantics.text: true
tradeSecretText.substancetradesecretname as SubstanceTradeSecretName,
//exposed associations
_Language,
_Substance
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EHFNDD_SUB_TS_T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SUBSTANCE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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