I_ReferenceDocumentType

DDL: I_REFERENCEDOCUMENTTYPE SQL: IFIREFDOCTYPE Type: view BASIC

Reference Document Type

I_ReferenceDocumentType is a Basic CDS View (Dimension) that provides data about "Reference Document Type" in SAP S/4HANA. It reads from 1 data source (ttyp) and exposes 2 fields with key field ReferenceDocumentType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
ttyp ttyp from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ReferenceDocumentTypeText _Text $projection.ReferenceDocumentType = _Text.ReferenceDocumentType

Annotations (18)

NameValueLevelField
EndUserText.label Reference Document Type view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIREFDOCTYPE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ReferenceDocumentType view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
ObjectModel.sapObjectNodeType.name ReferenceDocumentType view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.buffering.numberOfKeyFields 1 view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ReferenceDocumentType
_Text _Text
@EndUserText.label: 'Reference Document Type'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIREFDOCTYPE'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'ReferenceDocumentType'
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@ObjectModel.sapObjectNodeType.name: 'ReferenceDocumentType'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass:  #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.buffering.numberOfKeyFields: 1
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities:[#CDS_MODELING_DATA_SOURCE,#CDS_MODELING_ASSOCIATION_TARGET,#EXTRACTION_DATA_SOURCE,#ANALYTICAL_DIMENSION]
@Search.searchable: true
define view I_ReferenceDocumentType
  as select from ttyp
  association [0..*] to I_ReferenceDocumentTypeText as _Text on $projection.ReferenceDocumentType = _Text.ReferenceDocumentType
{
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
  key cast(awtyp as fis_awtyp preserving type ) as ReferenceDocumentType,
      _Text

}