I_PackagingMaterialTypeText

DDL: I_PACKAGINGMATERIALTYPETEXT Type: view BASIC Package: LOHUM_ODATA_UI_MHU

Packaging Material Type Text

I_PackagingMaterialTypeText is a Basic CDS View that provides data about "Packaging Material Type Text" in SAP S/4HANA. It reads from 1 data source (tvtyt) and exposes 4 fields with key fields PackagingMaterialType, Language. It has 1 association to related views. Part of development package LOHUM_ODATA_UI_MHU.

Data Sources (1)

SourceAliasJoin Type
tvtyt tvtyt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_PackagingMaterialType _PackagingMaterialType $projection.PackagingMaterialType = _PackagingMaterialType.PackagingMaterialType

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPKGMATTYPTXT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
EndUserText.label Packaging Material Type Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PackagingMaterialType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PackagingMaterialType tvtyt traty
KEY Language tvtyt spras
PackagingMaterialTypeName tvtyt vtext
_PackagingMaterialType _PackagingMaterialType
@AbapCatalog:{
    sqlViewName: 'IPKGMATTYPTXT',
    preserveKey: true,
    compiler.compareFilter: true
}
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@EndUserText.label: 'Packaging Material Type Text'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'PackagingMaterialType'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #M
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE

define view I_PackagingMaterialTypeText
  as select from tvtyt
  //   association [0..*] to I_Producttype as _ProductType           on $projection.ProductType = _ProductType.ProductType


  association [0..1] to I_PackagingMaterialType as _PackagingMaterialType on $projection.PackagingMaterialType = _PackagingMaterialType.PackagingMaterialType
{
  key tvtyt.traty as PackagingMaterialType,
      @Semantics.language: true
  key tvtyt.spras as Language,
      @Semantics.text: true
      tvtyt.vtext as PackagingMaterialTypeName,
      _PackagingMaterialType
}