I_ChmlSuplrMatlCmpstnStsTxt

DDL: I_CHMLSUPLRMATLCMPSTNSTSTXT Type: view BASIC

Supplier Material Composition Status Text

I_ChmlSuplrMatlCmpstnStsTxt is a Basic CDS View that provides data about "Supplier Material Composition Status Text" 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 SuplrMatlCmpstnStsTxt from

Associations (1)

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

Annotations (11)

NameValueLevelField
EndUserText.label Supplier Material Composition Status Text view
AbapCatalog.sqlViewName ICSUPLRMATLCSTST 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 ChmlSuplrMatlCmpstnSts view

Fields (4)

KeyFieldSource TableSource FieldDescription
domvalue_lasChmlSuplrMatlCmpstnSts
ddlanguageassylanguasLanguage
ddtextasChmlSuplrMatlCmpstnStsName
_Language _Language
@EndUserText.label: 'Supplier Material Composition Status Text'

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

@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: 'ChmlSuplrMatlCmpstnSts'
}

define view I_ChmlSuplrMatlCmpstnStsTxt
  --Select data from domain value description table
  as select from dd07t as SuplrMatlCmpstnStsTxt

  --association to I_Language
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      --Domain Value of Supplier Status
  key SuplrMatlCmpstnStsTxt.domvalue_l                    as ChmlSuplrMatlCmpstnSts,

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

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

      /* Associations */
      _Language
}
where
      SuplrMatlCmpstnStsTxt.domname  = 'EHFND_CSM_COMP_STATUS'
  and SuplrMatlCmpstnStsTxt.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/