I_SALESDOCUMENTTYPETEXT

CDS View

Sales Document Type - Text

I_SALESDOCUMENTTYPETEXT is a CDS View in S/4HANA. Sales Document Type - Text. It contains 2 fields. 4 CDS views read from this table.

CDS Views using this table (4)

ViewTypeJoinVDMDescription
A_SalesOrderTypeText view from BASIC Sales Order type text
I_ARunOvwSDItem view left_outer BASIC Basic View for Sales Document Item
I_SupDmndOvwSD view left_outer COMPOSITE Basic View for Sales Document
P_RFDYRelevantDocumentTypeText view from COMPOSITE

Fields (2)

KeyField CDS FieldsUsed in Views
KEY Language Language 1
SalesDocumentTypeName OrderTypeName,SalesDocumentTypeName 3
@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
};
              
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"TVAKT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SALESDOCUMENTTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/