I_IntcoValueChainDocStsTxt

DDL: I_INTCOVALUECHAINDOCSTSTXT Type: view BASIC Package: CA_VCM_MNTR_RAP

Status of Intercompany Value Chain Document - Text

I_IntcoValueChainDocStsTxt is a Basic CDS View that provides data about "Status of Intercompany Value Chain Document - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Language, IntcoValueChainDocumentStatus. It has 1 association to related views. Part of development package CA_VCM_MNTR_RAP.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IVCM_ICODOCSTT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey IntcoValueChainDocumentStatus view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Status of Intercompany Value Chain Document - Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY IntcoValueChainDocumentStatus
IntcoValueChainDocumentStsName ddtext
_Language _Language
@AbapCatalog:{
  sqlViewName: 'IVCM_ICODOCSTT',
  compiler.compareFilter: true,
  preserveKey: true
}

@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel: {
   dataCategory: #TEXT,
   usageType: {
     dataClass:      #CUSTOMIZING,
     serviceQuality: #C,
     sizeCategory:   #S
   },
   representativeKey: 'IntcoValueChainDocumentStatus'
}

@VDM.lifecycle.contract.type:#SAP_INTERNAL_API
@VDM: {
  viewType: #BASIC
}

@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL

@ClientHandling.algorithm: #SESSION_VARIABLE

@EndUserText.label: 'Status of Intercompany Value Chain Document - Text'
define view I_IntcoValueChainDocStsTxt
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage as Language,

      @ObjectModel.text.element: ['IntcoValueChainDocumentStsName']
  key cast(domvalue_l as vcm_document_status) as IntcoValueChainDocumentStatus,

      @Semantics.text: true
      ddtext     as IntcoValueChainDocumentStsName,

      _Language
}
where
      dd07t.domname  = 'VCM_DOCUMENT_STATUS'
  and dd07t.as4local = 'A'
  and dd07t.as4vers  = '0000'