I_IntcoValueChainDocItmStsTxt

DDL: I_INTCOVALUECHAINDOCITMSTSTXT Type: view BASIC

Status of Intercompany Value Chain Document Item - Text

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

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_ICODOCISTT 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 IntcoValueChainDocItmStatus 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 Item - Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY IntcoValueChainDocItmStatus
IntcoValueChainDocItmStsName ddtext
_Language _Language
@AbapCatalog:{
  sqlViewName: 'IVCM_ICODOCISTT',
  compiler.compareFilter: true,
  preserveKey: true
}

@AccessControl.authorizationCheck: #NOT_REQUIRED

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

@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 Item - Text'
define view I_IntcoValueChainDocItmStsTxt
  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: ['IntcoValueChainDocItmStsName']
  key cast(domvalue_l as vcm_documentitem_status) as IntcoValueChainDocItmStatus,

      @Semantics.text: true
      ddtext     as IntcoValueChainDocItmStsName,

      _Language
}
where
      dd07t.domname  = 'VCM_DOCUMENTITEM_STATUS'
  and dd07t.as4local = 'A'
  and dd07t.as4vers  = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/