I_ChmlCmplncBusProc

DDL: I_CHMLCMPLNCBUSPROC Type: view BASIC Package: EHFND_PRODUCT_MASTER_COMN

Chemical Compliance Business Process

I_ChmlCmplncBusProc is a Basic CDS View that provides data about "Chemical Compliance Business Process" 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_PRODUCT_MASTER_COMN.

Data Sources (1)

SourceAliasJoin Type
dd07l ChmlCmplncBusinessProcess from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ChmlCmplncBusProcText _Text $projection.ChmlCmplncBusinessProcess = _Text.ChmlCmplncBusinessProcess

Annotations (10)

NameValueLevelField
EndUserText.label Chemical Compliance Business Process view
AbapCatalog.sqlViewName ICCMPLBUSPR 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 ChmlCmplncBusinessProcess view

Fields (2)

KeyFieldSource TableSource FieldDescription
domvalue_lasChmlCmplncBusinessProcess
_Text _Text
--Label of view
@EndUserText.label: 'Chemical Compliance Business Process'

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

  --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: 'ChmlCmplncBusinessProcess'
}

define view I_ChmlCmplncBusProc
  --Select data from domain value table
  as select from dd07l as ChmlCmplncBusinessProcess

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

      /*Association*/
      _Text
}
where
      ChmlCmplncBusinessProcess.domname  = 'EHFND_CCI_BUSINESS_PROCESS'
  and ChmlCmplncBusinessProcess.as4local = 'A'