I_GoodsMovementRefDocType

DDL: I_GOODSMOVEMENTREFDOCTYPE Type: view BASIC

Goods Mvt Reference Document Type

I_GoodsMovementRefDocType is a Basic CDS View (Dimension) that provides data about "Goods Mvt Reference Document Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field GoodsMovementRefDocType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_GoodsMovementRefDocTypeText _Text $projection.GoodsMovementRefDocType = _Text.GoodsMovementRefDocType

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName IGDSMVTREFDOC view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
Analytics.dataExtraction.enabled true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
EndUserText.label Goods Mvt Reference Document Type view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey GoodsMovementRefDocType view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.sapObjectNodeType.name GoodsMovementReferenceDocType view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY GoodsMovementRefDocType
DomainValue dd07l domvalue_l
_Text _Text
@AbapCatalog: { sqlViewName: 'IGDSMVTREFDOC',
                preserveKey: true,
                compiler.compareFilter: true }

@Analytics: { dataExtraction.enabled:true,
              dataCategory: #DIMENSION,
              internalName: #LOCAL } 
              
@EndUserText.label: 'Goods Mvt Reference Document Type'

@Metadata: { allowExtensions: true,
             ignorePropagatedAnnotations: true }
             
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel: { dataCategory: #VALUE_HELP,
                modelingPattern: #ANALYTICAL_DIMENSION,
                representativeKey: 'GoodsMovementRefDocType',
                resultSet.sizeCategory: #XS,
                supportedCapabilities: [#ANALYTICAL_DIMENSION,
                                        #CDS_MODELING_ASSOCIATION_TARGET,
                                        #CDS_MODELING_DATA_SOURCE,
                                        #EXTRACTION_DATA_SOURCE,
                                        #SEARCHABLE_ENTITY,
                                        #SQL_DATA_SOURCE,
                                        #VALUE_HELP_PROVIDER],
                usageType: { serviceQuality: #A, 
                             dataClass: #META, 
                             sizeCategory: #S },
                sapObjectNodeType.name: 'GoodsMovementReferenceDocType' }

@Search.searchable

@VDM: { lifecycle.contract.type: #PUBLIC_LOCAL_API,
        viewType: #BASIC }
define view I_GoodsMovementRefDocType
  as select from dd07l 
    
  association [0..*] to I_GoodsMovementRefDocTypeText as _Text on $projection.GoodsMovementRefDocType = _Text.GoodsMovementRefDocType 
     
{
    @ObjectModel.text.association: '_Text'
  key cast ( cast ( substring( domvalue_l, 1, 2 ) as abap.char( 2 ) ) as kzbew ) as GoodsMovementRefDocType,
     @Analytics.hidden: true
     @Consumption.hidden: true
     @Search.defaultSearchElement: true
     @Search.ranking: #HIGH
     @Search.fuzzinessThreshold: 0.8
     dd07l.domvalue_l as DomainValue,
    //Associations

     _Text
}
where domname = 'KZBEW' 
  and as4local = 'A';