I_SERVICEDOCUMENTTYPETEXT
Service Transaction Type - Text
I_SERVICEDOCUMENTTYPETEXT is a CDS View in S/4HANA. Service Transaction Type - Text. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| A_ServiceDocumentTypeText | view_entity | from | COMPOSITE | Service Transaction Type Text |
@AbapCatalog:{
sqlViewName: 'ISERVDOCTYPETEXT',
compiler.compareFilter: true,
preserveKey:true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Service Transaction Type - Text'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ServiceDocumentType'
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@Analytics.dataExtraction.enabled: true
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
define view I_ServiceDocumentTypeText
as select from crmc_proc_type_t
association [1..1] to I_ServiceDocumentType as _ServiceDocumentType on $projection.ServiceDocumentType = _ServiceDocumentType.ServiceDocumentType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_ServiceDocumentType'
key process_type as ServiceDocumentType,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key langu as Language,
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
@Semantics.text: true
p_description as ServiceDocumentTypeName,
p_description_20 as ServiceDocumentTypeShortName,
_ServiceDocumentType,
_Language
}