I_MaterialSampleTypeText
Material Sample Type Text
I_MaterialSampleTypeText is a Basic CDS View that provides data about "Material Sample Type Text" in SAP S/4HANA. It reads from 1 data source (tq40t) and exposes 5 fields with key fields MaterialSampleType, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tq40t | tq40t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_MaterialSampleType | _MaterialSampleType | $projection.MaterialSampleType = _MaterialSampleType.MaterialSampleType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IMATSAMPLETYPET | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Material Sample Type Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | MaterialSampleType | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaterialSampleType | prart | ||
| KEY | Language | spras | ||
| MaterialSampleTypeText | ktext | |||
| _MaterialSampleType | _MaterialSampleType | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IMATSAMPLETYPET'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Material Sample Type Text'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'MaterialSampleType'
@VDM.viewType: #BASIC
@ObjectModel.usageType: { dataClass: #CUSTOMIZING, sizeCategory: #M, serviceQuality: #A }
define view I_MaterialSampleTypeText
as select from tq40t
association [1..1] to I_MaterialSampleType as _MaterialSampleType on $projection.MaterialSampleType = _MaterialSampleType.MaterialSampleType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key prart as MaterialSampleType,
@Semantics.language: true
key spras as Language,
@Semantics.text: true
ktext as MaterialSampleTypeText,
/* Associations */
_MaterialSampleType,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TQ40T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_MATERIALSAMPLETYPE"
],
"BASE":
[],
"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