C_MM_IncotermValueHelp
Incoterm Value Help
C_MM_IncotermValueHelp is a Consumption CDS View that provides data about "Incoterm Value Help" in SAP S/4HANA. It reads from 2 data sources (tincvmap, I_IncotermsClassification) and exposes 5 fields with key fields IncotermsClassification, IncotermsVersion. It has 1 association to related views. It is exposed through 1 OData service (UI_SALESQUOTATIONMANAGE).
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| tincvmap | _tincvmap | left_outer |
| I_IncotermsClassification | IncotermsClassification | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_IncotermsVersion | _IncotermsVersion | _IncotermsVersion.IncotermsVersion = $projection.IncotermsVersion |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CMMINCOTERM_VH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| ObjectModel.semanticKey | IncotermsClassification | view | |
| ObjectModel.representativeKey | IncotermsClassification | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Incoterm Value Help | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_SALESQUOTATIONMANAGE | UI_SALESQUOTATIONMANAGE | V4 | C1 | NOT_RELEASED |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | IncotermsClassification | IncotermsClassification | ||
| KEY | IncotermsVersion | tincvmap | incov | |
| IncotermsClassificationName | ||||
| LocationIsMandatory | LocationIsMandatory | |||
| _IncotermsVersion | _IncotermsVersion |
@AbapCatalog.sqlViewName: 'CMMINCOTERM_VH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@ObjectModel.semanticKey: 'IncotermsClassification'
@ObjectModel.representativeKey: 'IncotermsClassification'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Incoterm Value Help'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view C_MM_IncotermValueHelp
as select from I_IncotermsClassification as IncotermsClassification
left outer join tincvmap as _tincvmap on IncotermsClassification = _tincvmap.inco1 //LEFT OUTER Join as also Incoterms w/o record in TINCVMAP shall be returned
association [0..1] to I_IncotermsVersion as _IncotermsVersion on _IncotermsVersion.IncotermsVersion = $projection.IncotermsVersion
{
@ObjectModel.text.element: [ 'IncotermsClassificationName' ]
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 1.0 }
key IncotermsClassification,
@ObjectModel.foreignKey.association: '_IncotermsVersion'
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 1.0 }
key _tincvmap.incov as IncotermsVersion,
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
_Text[1: Language = $session.system_language].IncotermsClassificationName as IncotermsClassificationName,
LocationIsMandatory,
@Consumption.filter.hidden: true
_IncotermsVersion
}
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