C_PurOrdMaintainIncTrmsValHelp
PO Maintenance: Value Help for Incoterms Classification
C_PurOrdMaintainIncTrmsValHelp is a Consumption CDS View that provides data about "PO Maintenance: Value Help for Incoterms Classification" in SAP S/4HANA. It reads from 2 data sources (tincvmap, I_IncotermsClassification) and exposes 4 fields with key fields IncotermsClassification, IncotermsVersion. It has 1 association to related views.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| tincvmap | _tincvmap | left_outer |
| I_IncotermsClassification | I_IncotermsClassification | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_IncotermsClassificationText | _IncotermsClassificationText | $projection.IncotermsClassification = _IncotermsClassificationText.IncotermsClassification |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #CONSUMPTION | view | |
| AbapCatalog.sqlViewName | CPOMAINTINCOTRMS | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | PO Maintenance: Value Help for Incoterms Classification | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | IncotermsClassification | I_IncotermsClassification | IncotermsClassification | |
| KEY | IncotermsVersion | tincvmap | incov | |
| LocationIsMandatory | I_IncotermsClassification | LocationIsMandatory | ||
| _IncotermsClassificationText | _IncotermsClassificationText |
@VDM.viewType: #CONSUMPTION
@AbapCatalog.sqlViewName: 'CPOMAINTINCOTRMS'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'PO Maintenance: Value Help for Incoterms Classification'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
define view C_PurOrdMaintainIncTrmsValHelp
as select from I_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..*] to I_IncotermsClassificationText as _IncotermsClassificationText on $projection.IncotermsClassification = _IncotermsClassificationText.IncotermsClassification
{
key I_IncotermsClassification.IncotermsClassification as IncotermsClassification,
key _tincvmap.incov as IncotermsVersion,
I_IncotermsClassification.LocationIsMandatory as LocationIsMandatory,
_IncotermsClassificationText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INCOTERMSCLASSIFICATION",
"TINCVMAP"
],
"ASSOCIATED":
[
"I_INCOTERMSCLASSIFICATIONTEXT"
],
"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