I_CHMLCMPSTNOVERALLSTATUS

CDS View

Chemical Composition Overall Status

I_CHMLCMPSTNOVERALLSTATUS is a CDS View in S/4HANA. Chemical Composition Overall Status. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ChmlCmpstnOverallStatusVH view from COMPOSITE Chml Cmpstn Overall Status Value Help

@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'