I_ChmlCmplncRawMatlProcgStsTxt

DDL: I_CHMLCMPLNCRAWMATLPROCGSTSTXT Type: view BASIC

Text for Raw Material Processing Status

I_ChmlCmplncRawMatlProcgStsTxt is a Basic CDS View that provides data about "Text for Raw Material Processing Status" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t ChmlCmplncRawMatlProcgStsTxt from

Associations (1)

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

Annotations (11)

NameValueLevelField
EndUserText.label Text for Raw Material Processing Status view
AbapCatalog.sqlViewName ICCRMPROCSTT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey ChmlCmplncRawMatlProcgSts view

Fields (4)

KeyFieldSource TableSource FieldDescription
domvalue_l110asChmlCmplncRawMatlProcgSts
ddlanguageassylanguasLanguage
ddtextasChmlCmplncRawMatlProcgStsName
_Language _Language
@EndUserText.label: 'Text for Raw Material Processing Status'

@AbapCatalog:
{
  sqlViewName: 'ICCRMPROCSTT',
  compiler.compareFilter: true
}

// authorization check not required as view only reads domain values

@AccessControl.authorizationCheck: #NOT_REQUIRED

--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #BASIC

@ObjectModel:
{
  --Data category
  dataCategory: #TEXT,
  --Performance annotation
  usageType:
  {
    dataClass: #META,
    serviceQuality: #B,
    sizeCategory: #S
  },
  --Representative Key
  representativeKey: 'ChmlCmplncRawMatlProcgSts'
}

define view I_ChmlCmplncRawMatlProcgStsTxt
  --Select data from domain value description table
  as select from dd07t as ChmlCmplncRawMatlProcgStsTxt

  --association to I_Language
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      --Domain Value of CRR Status 
  key substring(ChmlCmplncRawMatlProcgStsTxt.domvalue_l, 1, 10)   as ChmlCmplncRawMatlProcgSts,

      --Language
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast(ChmlCmplncRawMatlProcgStsTxt.ddlanguage as sylangu)   as Language,

      --language-dependent description of domain value
      @Semantics.text: true
      ChmlCmplncRawMatlProcgStsTxt.ddtext                        as ChmlCmplncRawMatlProcgStsName,

      /* Associations */
      _Language
}
where
      ChmlCmplncRawMatlProcgStsTxt.domname  = 'EHFND_CCI_RAWMAT_PROC_STATUS'
  and ChmlCmplncRawMatlProcgStsTxt.as4local = 'A'