I_ServiceDocErrorStatusText

DDL: I_SERVICEDOCERRORSTATUSTEXT Type: view BASIC Package: CRMS4_REPORT

Error Status of Srvc Transaction - Text

I_ServiceDocErrorStatusText is a Basic CDS View that provides data about "Error Status of Srvc Transaction - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ServiceDocumentHasError, Language. It has 2 associations to related views. Part of development package CRMS4_REPORT.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ServiceDocErrorStatus _ServiceDocHasError $projection.ServiceDocumentHasError = _ServiceDocHasError.ServiceDocumentHasError
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (16)

NameValueLevelField
EndUserText.label Error Status of Srvc Transaction - Text view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISERVDOCERRSTATX view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ServiceDocumentHasError view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Analytics.dataExtraction.enabled true view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentHasError domvalue_l
KEY Language ddlanguage
ServiceDocumentHasErrorName ddtext
_ServiceDocHasError _ServiceDocHasError
_Language _Language
@EndUserText.label: 'Error Status of Srvc Transaction - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
  sqlViewName: 'ISERVDOCERRSTATX',
  compiler.compareFilter: true,
  preserveKey: true
}
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel: {
   dataCategory: #TEXT,
   representativeKey: 'ServiceDocumentHasError',
   usageType: {
     dataClass:      #CUSTOMIZING,
     serviceQuality: #A,
     sizeCategory:   #S
   },
   supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE ],
   modelingPattern: #LANGUAGE_DEPENDENT_TEXT
}
@Analytics.dataExtraction.enabled: true
//@Metadata.allowExtensions:true

@Metadata.ignorePropagatedAnnotations: true



define view I_ServiceDocErrorStatusText
  as select from dd07t
  association [1..1] to I_ServiceDocErrorStatus as _ServiceDocHasError on $projection.ServiceDocumentHasError = _ServiceDocHasError.ServiceDocumentHasError
  association [1..1] to I_Language              as _Language           on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_ServiceDocHasError'
  key domvalue_l as ServiceDocumentHasError,
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage as Language,
      @Semantics.text: true
      ddtext     as ServiceDocumentHasErrorName,

      _ServiceDocHasError,
      _Language
}
where
      domname  = 'CRMS4_STAT_ERROR'
  and as4local = 'A'