I_MatlSmplContainerTypeText

DDL: I_MATLSMPLCONTAINERTYPETEXT SQL: IMATLSMPLCONTRTT Type: view BASIC

Material Sample Container Type Text

I_MatlSmplContainerTypeText is a Basic CDS View that provides data about "Material Sample Container Type Text" in SAP S/4HANA. It reads from 1 data source (tq42t) and exposes 5 fields with key fields MatlSmplContainerType, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tq42t tq42t from

Associations (2)

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

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMATLSMPLCONTRTT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Sample Container Type Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey MatlSmplContainerType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MatlSmplContainerType tq42t gebindetyp
KEY Language tq42t sprache
MatlSmplContainerTypeText tq42t kurztext
_MatlSmplContainerType _MatlSmplContainerType
_Language _Language
@AbapCatalog.sqlViewName: 'IMATLSMPLCONTRTT'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Material Sample Container Type Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'MatlSmplContainerType'
@ObjectModel.usageType: { dataClass: #CUSTOMIZING, sizeCategory: #M, serviceQuality: #A }
define view I_MatlSmplContainerTypeText
  as select from tq42t
  association [0..1] to I_Language              as _Language              on $projection.Language = _Language.Language
  association [1..1] to I_MatlSmplContainerType as _MatlSmplContainerType on $projection.MatlSmplContainerType = _MatlSmplContainerType.MatlSmplContainerType
{
  key tq42t.gebindetyp as MatlSmplContainerType,
      @Semantics.language: true
  key tq42t.sprache    as Language,
      @Semantics.text: true
      tq42t.kurztext   as MatlSmplContainerTypeText,

      /* Associations */
      _MatlSmplContainerType,
      _Language
}