I_NominationMaterialDesc
Nomination Ticket Material Description
I_NominationMaterialDesc is a Basic CDS View that provides data about "Nomination Ticket Material Description" in SAP S/4HANA. It reads from 1 data source (makt) and exposes 3 fields with key field ScheduledMaterial.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| makt | makt | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | INOMMATTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| EndUserText.label | Nomination Ticket Material Description | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ScheduledMaterial | matnr | ||
| MaterialDescriptionByCustomer | maktx | |||
| MaterialDesc | maktg |
@AbapCatalog.sqlViewName: 'INOMMATTXT'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
usageType.serviceQuality: #A,
usageType.sizeCategory: #L,
usageType.dataClass: #TRANSACTIONAL
}
@EndUserText.label: 'Nomination Ticket Material Description'
define view I_NominationMaterialDesc
as select from makt
{
key matnr as ScheduledMaterial,
// key spras as SenderLanguage,
maktx as MaterialDescriptionByCustomer,
maktg as MaterialDesc
}
where
spras = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MAKT"
],
"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