I_MatlDocVersForPrintingSlip

DDL: I_MATLDOCVERSFORPRINTINGSLIP Type: view_entity BASIC Package: MM_IM_RAP_MATDOC_UI

Matdoc Version Printing Slip

I_MatlDocVersForPrintingSlip is a Basic CDS View that provides data about "Matdoc Version Printing Slip" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field VersionForPrintingSlip. It has 1 association to related views. Part of development package MM_IM_RAP_MATDOC_UI.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MatlDocVersForPrintingSlipT _MatlDocVersForPrintingSlipT $projection.VersionForPrintingSlip = _MatlDocVersForPrintingSlipT.VersionForPrintingSlip

Annotations (12)

NameValueLevelField
EndUserText.label Matdoc Version Printing Slip view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey VersionForPrintingSlip view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY VersionForPrintingSlip
_MatlDocVersForPrintingSlipT _MatlDocVersForPrintingSlipT
@EndUserText.label: 'Matdoc Version Printing Slip'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
                usageType: {
                             sizeCategory: #S,
                             serviceQuality: #A,
                             dataClass:#CUSTOMIZING
                           },
                resultSet.sizeCategory: #XS,
                representativeKey: 'VersionForPrintingSlip'
              }
@VDM: {
        viewType: #BASIC
      }
@Metadata: {
             ignorePropagatedAnnotations: true
           }
@Consumption.ranked: true
@Search.searchable: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.supportedCapabilities: [#VALUE_HELP_PROVIDER]
//@UI.presentationVariant: [{ sortOrder: [{ by: 'VersionForPrintingSlip', direction: #ASC }] }]

/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ]  } */
define view entity I_MatlDocVersForPrintingSlip
  as select from dd07l
  association [0..*] to I_MatlDocVersForPrintingSlipT as _MatlDocVersForPrintingSlipT on $projection.VersionForPrintingSlip = _MatlDocVersForPrintingSlipT.VersionForPrintingSlip
{
      @ObjectModel.text.association: '_MatlDocVersForPrintingSlipT'
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Search.fuzzinessThreshold: 0.8
  key cast(substring(dd07l.domvalue_l, 1, 1) as matldoc_print_slip preserving type) as VersionForPrintingSlip,

      //Associations

      _MatlDocVersForPrintingSlipT

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