I_AllocTableCreatingApplT

DDL: I_ALLOCTABLECREATINGAPPLT SQL: IALLOCTBLCRAPPLT Type: view BASIC Package: VDM_RFM_ALLOCATION_TABLE

Allocation Table Creating Application Text

I_AllocTableCreatingApplT is a Basic CDS View that provides data about "Allocation Table Creating Application Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields AllocTableCreatingApplication, 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_AllocTableCreatingAppl _CreatingApplication $projection.AllocTableCreatingApplication = _CreatingApplication.AllocTableCreatingApplication
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IALLOCTBLCRAPPLT view
EndUserText.label Allocation Table Creating Application Text view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey AllocTableCreatingApplication view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AllocTableCreatingApplication
KEY Language ddlanguage
AllocTableCreatingApplName ddtext
_CreatingApplication _CreatingApplication
_Language _Language
// Code List

@AbapCatalog.sqlViewName: 'IALLOCTBLCRAPPLT'
@EndUserText.label: 'Allocation Table Creating Application Text'

@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE

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

define view I_AllocTableCreatingApplT
  as select from dd07t
  association [1..1] to I_AllocTableCreatingAppl as _CreatingApplication on $projection.AllocTableCreatingApplication = _CreatingApplication.AllocTableCreatingApplication
  association [1..1] to I_Language               as _Language            on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_CreatingApplication'
  key cast(substring( domvalue_l, 1, 1) as ervon)  as AllocTableCreatingApplication,

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

      @Semantics.text: true
      ddtext                                       as AllocTableCreatingApplName,

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