A_IncotermsClassification

DDL: A_INCOTERMSCLASSIFICATION Type: view BASIC Package: ODATA_SD_MASTERDATA

Incoterms

A_IncotermsClassification is a Basic CDS View that provides data about "Incoterms" in SAP S/4HANA. It reads from 1 data source (I_IncotermsClassification) and exposes 3 fields with key field IncotermsClassification. It has 1 association to related views. Part of development package ODATA_SD_MASTERDATA.

Data Sources (1)

SourceAliasJoin Type
I_IncotermsClassification I_IncotermsClassification from

Associations (1)

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

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Incoterms view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName ASDINCOTERMCLSS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey IncotermsClassification view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY IncotermsClassification IncotermsClassification
LocationIsMandatory LocationIsMandatory
_IncotermsClassificationText _IncotermsClassificationText
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Incoterms'
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AbapCatalog: {
  sqlViewName: 'ASDINCOTERMCLSS',
  compiler.compareFilter: true,
  preserveKey: true
}
@AccessControl: { 
  authorizationCheck: #NOT_REQUIRED
}
@ObjectModel: {
   representativeKey: 'IncotermsClassification',
   usageType: {
     dataClass:      #CUSTOMIZING,
     serviceQuality: #A,
     sizeCategory:   #S
   }
}
@Metadata.ignorePropagatedAnnotations: true
define view A_IncotermsClassification 
as select from I_IncotermsClassification
  association [0..*] to A_IncotermsClassificationText as _IncotermsClassificationText on _IncotermsClassificationText.IncotermsClassification = $projection.IncotermsClassification
{
      @ObjectModel.sapObjectNodeTypeReference: 'IncotermsClassification'
  key IncotermsClassification,
  LocationIsMandatory,
  // Expose own associations

  _IncotermsClassificationText
}