I_AllocTableItemProcgMethodT

DDL: I_ALLOCTABLEITEMPROCGMETHODT SQL: IALCTBLITPROCMT Type: view BASIC Package: VDM_RFM_ALLOCATION_TABLE

Allocation Table Item Processing Method Text

I_AllocTableItemProcgMethodT is a Basic CDS View that provides data about "Allocation Table Item Processing Method Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields DistributionProcessingMethod, Language. It has 2 associations to related views. Part of development package VDM_RFM_ALLOCATION_TABLE.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_AllocTableItemProcgMethod _ProcessingMethod $projection.DistributionProcessingMethod = _ProcessingMethod.DistributionProcessingMethod
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IALCTBLITPROCMT view
EndUserText.label Allocation Table Item Processing Method Text view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey DistributionProcessingMethod view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY DistributionProcessingMethod
KEY Language ddlanguage
DistrProcessingMethodName ddtext
_ProcessingMethod _ProcessingMethod
_Language _Language
@AbapCatalog.sqlViewName: 'IALCTBLITPROCMT'
@EndUserText.label: 'Allocation Table Item Processing Method Text'

@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true

@VDM.viewType: #BASIC
@ObjectModel: {
    dataCategory: #TEXT,
    representativeKey: 'DistributionProcessingMethod',
    usageType.serviceQuality: #A,
    usageType.sizeCategory: #S,
    usageType.dataClass: #META
}

define view I_AllocTableItemProcgMethodT
  as select from dd07t
  association [1..1] to I_AllocTableItemProcgMethod as _ProcessingMethod on $projection.DistributionProcessingMethod = _ProcessingMethod.DistributionProcessingMethod
  association [1..1] to I_Language                  as _Language         on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_ProcessingMethod'
  key cast(substring(domvalue_l, 1, 1) as waflu_vz preserving type) as DistributionProcessingMethod,

      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key ddlanguage                                                    as Language,

      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
      ddtext                                                        as DistrProcessingMethodName,

      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
      _ProcessingMethod,
      _Language
}
where
      domname  = 'BARTV'
  and as4local = 'A'