I_SalesDocImportStatusText

DDL: I_SALESDOCIMPORTSTATUSTEXT SQL: ISDIMPRTSTATUST Type: view BASIC Package: VDM_SD_SLS_IMPORT

Sales Document Import Status Text

I_SalesDocImportStatusText is a Basic CDS View that provides data about "Sales Document Import Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields SalesDocumentImportStatus, Language. It has 2 associations to related views. Part of development package VDM_SD_SLS_IMPORT.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_SalesDocumentImportStatus _SalesDocumentImportStatus $projection.SalesDocumentImportStatus = _SalesDocumentImportStatus.SalesDocumentImportStatus

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISDIMPRTSTATUST view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SalesDocumentImportStatus view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Sales Document Import Status Text view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SalesDocumentImportStatus
KEY Language ddlanguage
SalesDocImportStatusText
_SalesDocumentImportStatus _SalesDocumentImportStatus
_Language _Language
@AbapCatalog.sqlViewName: 'ISDIMPRTSTATUST'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SalesDocumentImportStatus'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Sales Document Import Status Text'
@Search.searchable: true
define view I_SalesDocImportStatusText 
as select from dd07t
  association [0..1] to I_Language        as _Language        on $projection.Language = _Language.Language
  association [1..1] to I_SalesDocumentImportStatus as _SalesDocumentImportStatus on $projection.SalesDocumentImportStatus = _SalesDocumentImportStatus.SalesDocumentImportStatus
{
      @ObjectModel.foreignKey.association: '_SalesDocumentImportStatus'
  key cast ( substring( domvalue_l, 1, 1 ) as slsdoc_import_status )   as SalesDocumentImportStatus,
  
      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage                                                       as Language,
      
      @Semantics.text
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  cast (ddtext as slsdoc_import_status_text)                           as SalesDocImportStatusText,

      _SalesDocumentImportStatus,
      _Language
}
where
      domname  = 'SLSDOC_IMPORT_STATUS'
  and as4local = 'A'