I_SalesDocumentTypeText

DDL: I_SALESDOCUMENTTYPETEXT SQL: ISDSALESDOCTYPET Type: view BASIC Package: VDM_SD_SLS_GF

Sales Document Type - Text

I_SalesDocumentTypeText is a Basic CDS View that provides data about "Sales Document Type - Text" in SAP S/4HANA. It reads from 1 data source (tvakt) and exposes 5 fields with key fields SalesDocumentType, Language. Part of development package VDM_SD_SLS_GF.

Data Sources (1)

SourceAliasJoin Type
tvakt tvakt from

Annotations (16)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SalesDocumentType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Sales Document Type - Text view
VDM.viewType #BASIC view
Search.searchable true view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDSALESDOCTYPET view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SalesDocumentType auart
KEY Language spras
SalesDocumentTypeName
_SalesDocumentType
_Language _Language
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SalesDocumentType'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, 
                                      #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.modelingPattern: [ #LANGUAGE_DEPENDENT_TEXT ]
@EndUserText.label: 'Sales Document Type - Text'
@VDM.viewType: #BASIC
@Search.searchable: true
@Analytics.dataExtraction.enabled: true
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDSALESDOCTYPET'
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@Metadata.ignorePropagatedAnnotations:true

define view I_SalesDocumentTypeText
as select from
tvakt
association[0..1] to I_SalesDocumentType as _SalesDocumentType on $projection.SalesDocumentType = _SalesDocumentType.SalesDocumentType
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{  
    @ObjectModel.foreignKey.association: '_SalesDocumentType'
    key auart as SalesDocumentType,

    @Semantics.language: true
    @ObjectModel.foreignKey.association: '_Language'
    key spras as Language,
    
    @Search: {
      defaultSearchElement: true,
      fuzzinessThreshold: 0.9,
      ranking: #LOW }
    @Semantics.text: true
    --cast(bezei as salesdocumenttypename) as SalesDocumentTypeName,  --AT03.04.19 label Sales Document Type Description
    bezei as SalesDocumentTypeName,                                   --AT03.04.19 as it was before...
    
    _SalesDocumentType,
    _Language
};