A_ChemicalNameText
Chemical Name Text
A_ChemicalNameText is a Composite CDS View that provides data about "Chemical Name Text" in SAP S/4HANA. It reads from 1 data source (I_CurrentChemicalNameText) and exposes 4 fields with key fields ChemicalUUID, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CurrentChemicalNameText | I_CurrentChemicalNameText | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACHMNAMET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Chemical Name Text | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ChemicalUUID | 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 (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChemicalUUID | ChemicalUUID | ||
| KEY | Language | Language | ||
| LanguageISOCode | _Language | LanguageISOCode | ||
| NameOfChemical | NameOfChemical |
@AbapCatalog.sqlViewName: 'ACHMNAMET'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Chemical Name Text'
@VDM.viewType: #COMPOSITE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ChemicalUUID'
// 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
define view A_ChemicalNameText as select from I_CurrentChemicalNameText
{
key ChemicalUUID,
@Semantics.language: true
key Language,
_Language.LanguageISOCode,
@Semantics.text:true
NameOfChemical
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CURRENTCHEMICALNAMETEXT",
"I_LANGUAGE"
],
"ASSOCIATED":
[],
"BASE":
[],
"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