I_ChmlCmpstnOverallStatus

DDL: I_CHMLCMPSTNOVERALLSTATUS Type: view BASIC Package: EHFND_CNS_CCI

Chemical Composition Overall Status

I_ChmlCmpstnOverallStatus is a Basic CDS View that provides data about "Chemical Composition Overall Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields. It has 1 association to related views. Part of development package EHFND_CNS_CCI.

Data Sources (1)

SourceAliasJoin Type
dd07l ChemicalCmpstnOverallStatus from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ChmlCmpstnOverallStatusText _Text $projection.ChmlCmpstnOverallStatus = _Text.ChmlCompositionStatus

Annotations (12)

NameValueLevelField
EndUserText.label Chemical Composition Overall Status view
AbapCatalog.sqlViewName ICCMPSOVLSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey ChmlCmpstnOverallStatus view

Fields (2)

KeyFieldSource TableSource FieldDescription
domvalue_l12asChmlCmpstnOverallStatus
_Text _Text

@EndUserText.label: 'Chemical Composition Overall Status'

@AbapCatalog:
{
  -- SQL view name (16 characters)
  sqlViewName: 'ICCMPSOVLSTS',

  --If it's true, the filter conditions are compared and, if they match, the associated join expression is evaluated only once
  compiler.compareFilter: true,
  preserveKey: 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 view type
@VDM.viewType: #BASIC

@ObjectModel:
{
  resultSet.sizeCategory: #XS,
  
  --Performance Annotations
  usageType:
  {
    dataClass: #META,
    sizeCategory: #S,
    serviceQuality: #B
  },
  representativeKey: 'ChmlCmpstnOverallStatus'
}

define view I_ChmlCmpstnOverallStatus
  --Select data from domain value table
  as select from dd07l as ChemicalCmpstnOverallStatus

  --Text association
  association [0..*] to I_ChmlCmpstnOverallStatusText    as _Text       on $projection.ChmlCmpstnOverallStatus = _Text.ChmlCompositionStatus
{
      --Domain Value of Release Status
      @ObjectModel.text.association: '_Text'
  key substring(ChemicalCmpstnOverallStatus.domvalue_l, 1, 2) as ChmlCmpstnOverallStatus,

      /*Association*/
      _Text
}
where
      ChemicalCmpstnOverallStatus.domname  = 'EHFND_CCI_CCMPS_OVERALL_STATUS'
  and ChemicalCmpstnOverallStatus.as4local = 'A'