I_IntcoValueChainDocItmStatus

DDL: I_INTCOVALUECHAINDOCITMSTATUS Type: view BASIC

Status of Intercompany Value Chain Document Item

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

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_IntcoValueChainDocItmStsTxt _Text $projection.IntcoValueChainDocItmStatus = _Text.IntcoValueChainDocItmStatus

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IVCM_ICODOCIST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED 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 view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY IntcoValueChainDocItmStatus
_Text _Text
@AbapCatalog:{
  sqlViewName: 'IVCM_ICODOCIST',
  compiler.compareFilter: true,
  preserveKey: true
}

@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel: {
   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'
define view I_IntcoValueChainDocItmStatus
  as select from dd07l
  association [0..*] to I_IntcoValueChainDocItmStsTxt as _Text on $projection.IntcoValueChainDocItmStatus = _Text.IntcoValueChainDocItmStatus
{

  key cast(domvalue_l as vcm_documentitem_status) as IntcoValueChainDocItmStatus,

      case   domvalue_l
       when 'C'   then 3  // Completed

       when 'E'   then 1  // Processed with Errors

       when 'PP'  then 5  // Partially Processed

       when 'O'   then 0  // Open

       when 'CN'  then 0  // Cancelled.

       when 'D'   then 0  // Deleted

       else            0
      end                                                as IntcoValChnDocItmStsCritlty,

      _Text
}
where
      dd07l.domname  = 'VCM_DOCUMENTITEM_STATUS'
  and dd07l.as4local = 'A'
  and dd07l.as4vers  = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_INTCOVALUECHAINDOCITMSTSTXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/