I_MatlDocVersForPrintingSlipT

DDL: I_MATLDOCVERSFORPRINTINGSLIPT Type: view_entity BASIC Package: MM_IM_RAP_MATDOC_UI

Matdoc Version Printing Slip - Text

I_MatlDocVersForPrintingSlipT is a Basic CDS View that provides data about "Matdoc Version Printing Slip - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields VersionForPrintingSlip, Language. It has 2 associations to related views. Part of development package MM_IM_RAP_MATDOC_UI.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Matdoc Version Printing Slip - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY VersionForPrintingSlip
KEY Language
VersionForPrintingSlipName
_MatlDocVersForPrintingSlip _MatlDocVersForPrintingSlip
_Language _Language
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Matdoc Version Printing Slip - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #C,
  sizeCategory: #S,
  dataClass: #CUSTOMIZING
}

@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT , #SQL_DATA_SOURCE , #CDS_MODELING_DATA_SOURCE , #CDS_MODELING_ASSOCIATION_TARGET]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@Search.searchable: true
define view entity I_MatlDocVersForPrintingSlipT
  as select from dd07t
  association [0..1] to I_MatlDocVersForPrintingSlip as _MatlDocVersForPrintingSlip on $projection.VersionForPrintingSlip = _MatlDocVersForPrintingSlip.VersionForPrintingSlip
  association [0..1] to I_Language                   as _Language                   on $projection.Language = _Language.Language
{
       @ObjectModel.foreignKey.association: '_MatlDocVersForPrintingSlip'
       @ObjectModel.text.element: ['VersionForPrintingSlipName']
//       @UI.textArrangement: #TEXT_ONLY

//       @UI.hidden: true

  key  cast(substring(dd07t.domvalue_l, 1, 1) as matldoc_print_slip preserving type) as VersionForPrintingSlip,
       @ObjectModel.foreignKey.association: '_Language'
       @Semantics.language:true
  key  cast( ddlanguage as spras )                                             as Language,

       @Semantics.text: true
       @Search.fuzzinessThreshold: 0.8
       @Search.defaultSearchElement: true
       @Search.ranking: #LOW
       cast ( substring ( ddtext, 1, 60 ) as val_text )                        as VersionForPrintingSlipName,

       _MatlDocVersForPrintingSlip,
       _Language

}
where
  (
    dd07t.domname  = 'MATDOC_PRNT_SLIP'
  )
  and(
    dd07t.as4local = 'A'
  );