I_CHMLCMPLNCREQCMPLNCPROC

CDS View

Chemical Compliance Request Compliance Process

I_CHMLCMPLNCREQCMPLNCPROC is a CDS View in S/4HANA. Chemical Compliance Request Compliance Process. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ChmlCmplncReqCmplncProcVH view from COMPOSITE Chem. Compl. Request Compl. Process Value Help
--Label of view
@EndUserText.label: 'Chemical Compliance Request Compliance Process'

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

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

@ObjectModel:
{

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

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view I_ChmlCmplncReqCmplncProc
  --Select data from domain value table
  as select from dd07l as ChmlCmplncReqCmplncProc

  --Text association
  association [0..*] to I_ChmlCmplncReqCmplncProcTxt as _Text on $projection.ChmlCmplncReqCmplncProc = _Text.ChmlCmplncReqCmplncProc
{
      --Domain Value of Basic Data Status
      @ObjectModel.text.association: '_Text'
  key ChmlCmplncReqCmplncProc.domvalue_l as ChmlCmplncReqCmplncProc,

      /*Association*/
      _Text
}
where
       ChmlCmplncReqCmplncProc.domname   = 'EHFND_EHSM_COMPONENT'
  and  ChmlCmplncReqCmplncProc.as4local  = 'A'
  and(
       ChmlCmplncReqCmplncProc.domvalue_l = 'PMA'
    or ChmlCmplncReqCmplncProc.domvalue_l = 'DG'
    or ChmlCmplncReqCmplncProc.domvalue_l = 'SDS'
  )