I_SDDocumentLongTextID

DDL: I_SDDOCUMENTLONGTEXTID Type: view BASIC

Long Text ID of SD Document

I_SDDocumentLongTextID is a Basic CDS View that provides data about "Long Text ID of SD Document" in SAP S/4HANA. It reads from 1 data source (I_TextObjectType) and exposes 3 fields with key field LongTextID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_TextObjectType I_TextObjectType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_TextObjectTypeText _Text $projection.LongTextID = _Text.TextObjectType and $projection.TextObjectCategory = _Text.TextObjectCategory

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISDDOCLNGTXTID view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey LongTextID view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
EndUserText.label Long Text ID of SD Document view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY LongTextID TextObjectType
TextObjectCategory TextObjectCategory
_Text _Text
@ClientHandling.algorithm: #SESSION_VARIABLE

@AbapCatalog: {
  sqlViewName: 'ISDDOCLNGTXTID',
  preserveKey: true,
  compiler.compareFilter: true
}

@VDM.viewType: #BASIC

@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel: {
  representativeKey: 'LongTextID',
  usageType: {
    dataClass: #CUSTOMIZING,
    serviceQuality: #A,
    sizeCategory: #S
  }
 }
 
@Search.searchable: true
 
@EndUserText.label: 'Long Text ID of SD Document'
define view I_SDDocumentLongTextID
  as select from I_TextObjectType 
  
  association [0..*] to I_TextObjectTypeText as _Text on  $projection.LongTextID         = _Text.TextObjectType
                                                          and $projection.TextObjectCategory = _Text.TextObjectCategory

{
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.9
      @Search.ranking: #HIGH   
  key TextObjectType     as LongTextID,
      
      TextObjectCategory,
      
      _Text
  
  
} where TextObjectCategory = 'VBBK'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_TEXTOBJECTTYPE"
],
"ASSOCIATED":
[
"I_TEXTOBJECTTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/