I_ChmlReleaseStatus

DDL: I_CHMLRELEASESTATUS Type: view BASIC

Release Status for Monitor

I_ChmlReleaseStatus is a Basic CDS View that provides data about "Release Status for Monitor" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l ChemicalReleaseStatus from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ChmlReleaseStatusText _Text $projection.ChmlCompositionStatus = _Text.ChmlCompositionStatus

Annotations (10)

NameValueLevelField
EndUserText.label Release Status for Monitor view
AbapCatalog.sqlViewName ICCRELSTATUS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey ChmlCompositionStatus view

Fields (2)

KeyFieldSource TableSource FieldDescription
domvalue_l14asChmlCompositionStatus
_Text _Text
@EndUserText.label: 'Release Status for Monitor'

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

--Access Control: Authorizations Checks
@AccessControl:
{
  // authorization check not required as view only reads domain values

  authorizationCheck: #NOT_REQUIRED
}

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

@VDM.viewType: #BASIC

@ObjectModel:
{

  --Performance Annotations
  usageType:
  {
    dataClass: #META,
    sizeCategory: #S,
    serviceQuality: #B
  },
  representativeKey: 'ChmlCompositionStatus'
}

define view I_ChmlReleaseStatus
  --Select data from domain value table
  as select from dd07l as ChemicalReleaseStatus

  --Text association
  association [0..*] to I_ChmlReleaseStatusText as _Text on $projection.ChmlCompositionStatus = _Text.ChmlCompositionStatus

{
      --Domain Value of Release Status
      @ObjectModel.text.association: '_Text'
  key substring(ChemicalReleaseStatus.domvalue_l, 1, 4) as ChmlCompositionStatus,

      /*Association*/
      _Text
}
where
      ChemicalReleaseStatus.domname  = 'EHFND_CCI_CCMPS_RELEASESTATUS'
  and ChemicalReleaseStatus.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_CHMLRELEASESTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/