I_CtrlgOriginClassificationT

DDL: I_CTRLGORIGINCLASSIFICATIONT SQL: IFICTRLGORICLAST Type: view BASIC

Controlling Origin Classification Text

I_CtrlgOriginClassificationT is a Basic CDS View that provides data about "Controlling Origin Classification Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Language, CtrlgOriginClassification. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CtrlgOriginClassification view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFICTRLGORICLAST view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Controlling Origin Classification Text view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #META view
AbapCatalog.buffering.type #NONE view
AbapCatalog.buffering.numberOfKeyFields 0 view
AbapCatalog.buffering.status #NOT_ALLOWED view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY CtrlgOriginClassification
CtrlgOriginClassificationName
_Language _Language
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CtrlgOriginClassification'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFICTRLGORICLAST'
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Controlling Origin Classification Text'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #META
@AbapCatalog.buffering: {type: #NONE, numberOfKeyFields: 0, status: #NOT_ALLOWED}
@Metadata.ignorePropagatedAnnotations: true


define view I_CtrlgOriginClassificationT
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language' //Inserted by VDM CDS Suite Plugin

  key cast( ddlanguage as spras )         as Language,
  key cast( domvalue_l as fis_kkb_herkz ) as CtrlgOriginClassification,
      @Semantics.text
      cast(ddtext as fis_herkz_name)      as CtrlgOriginClassificationName,

      _Language
}
where
      domname  = 'KKB_HERKZ'
  and as4local = 'A';