I_DocumentInfoRecordDocStatusT

DDL: I_DOCUMENTINFORECORDDOCSTATUST SQL: ICVDOCSTATUST Type: view BASIC Package: CV_VDM

Document Info Record Document Sts - Text

I_DocumentInfoRecordDocStatusT is a Basic CDS View that provides data about "Document Info Record Document Sts - Text" in SAP S/4HANA. It reads from 1 data source (tdwst) and exposes 6 fields with key fields Language, InternalDocumentStatus. It has 2 associations to related views. Part of development package CV_VDM.

Data Sources (1)

SourceAliasJoin Type
tdwst status_text from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_DocumentInfoRecordDocStatus _DocStatus $projection.InternalDocumentStatus = _DocStatus.InternalDocumentStatus
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName ICVDOCSTATUST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ClientHandling.type #INHERITED view
ObjectModel.representativeKey InternalDocumentStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
EndUserText.label Document Info Record Document Sts - Text view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language tdwst cvlang
KEY InternalDocumentStatus tdwst dokst
ExternalDocumentStatus tdwst stabk
DocumentStatusName tdwst dostx
_Language _Language
_DocStatus _DocStatus
@AbapCatalog.sqlViewName: 'ICVDOCSTATUST'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ClientHandling.type : #INHERITED
@ObjectModel.representativeKey: 'InternalDocumentStatus'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #M, dataClass: #CUSTOMIZING }
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #GENERIC
@AbapCatalog.buffering.numberOfKeyFields: #(001)
@EndUserText.label: 'Document Info Record Document Sts - Text'
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type:#PUBLIC_LOCAL_API
@ObjectModel.supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT , #SQL_DATA_SOURCE , #CDS_MODELING_DATA_SOURCE , #CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
define view I_DocumentInfoRecordDocStatusT
  as select from tdwst as status_text

  association [0..*] to I_DocumentInfoRecordDocStatus as _DocStatus on $projection.InternalDocumentStatus = _DocStatus.InternalDocumentStatus
  association [1..1] to I_Language                as _Language     on $projection.Language = _Language.Language

{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key status_text.cvlang as Language,
      @ObjectModel.text.element:['DocumentStatusName'] 
  key status_text.dokst as InternalDocumentStatus,
      @ObjectModel.text.element:['ExternalDocumentStatus']
      status_text.stabk as ExternalDocumentStatus,

      @Semantics.text: true
      status_text.dostx as DocumentStatusName,

      //Associations

      _Language,
      _DocStatus
      
}