C_PurOrdMaintainIncTrmsValHelp

DDL: C_PURORDMAINTAININCTRMSVALHELP SQL: CPOMAINTINCOTRMS Type: view CONSUMPTION

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)

SourceAliasJoin Type
tincvmap _tincvmap left_outer
I_IncotermsClassification I_IncotermsClassification from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_IncotermsClassificationText _IncotermsClassificationText $projection.IncotermsClassification = _IncotermsClassificationText.IncotermsClassification

Annotations (7)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/