I_CHMLCMPLNCWASTEDATA

CDS View

Chemical Compliance Waste Data

I_CHMLCMPLNCWASTEDATA is a CDS View in S/4HANA. Chemical Compliance Waste Data. It contains 2 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
I_ChmlCmplncWasteDataTP view from TRANSACTIONAL Chemical Compliance Waste Data - TP
I_EHSEnvRptPRTRSubstWaste view_entity inner COMPOSITE PRTR waste sensitive data

Fields (2)

KeyField CDS FieldsUsed in Views
KEY ChmlCmplncInfoUUID ChmlCmplncInfoUUID 1
EnvrmtWasteHazardCharcID EnvrmtWasteHazardCharcID 1
@EndUserText.label: 'Chemical Compliance Waste Data'
@AbapCatalog.sqlViewName: 'ICCWASTEDATA'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel:
{
  --Performance Annotations
  usageType:
  {
    dataClass: #MASTER,
    sizeCategory: #L,
    serviceQuality: #B
  }
}

define view I_ChmlCmplncWasteData 
  as select from ehfndv_ccw_wdata
  --Chemical Compliance information
  association [1..1] to I_ChmlCmplncInfo        as _ChmlCmplncInfo   on $projection.ChmlCmplncInfoUUID = _ChmlCmplncInfo.ChmlCmplncInfoUUID   
{
      --UUID of assignment
  key chmlcmplncenvrmtwastecharcuuid as ChmlCmplncEnvrmtWasteCharcUUID,

      --UUID of chemical compliance info
      chmlcmplncinfouuid            as ChmlCmplncInfoUUID,

      @Semantics.systemDateTime.createdAt: true
      cast(creationutcdatetime as ehfnd_bo_crea_date_time preserving type )   as CreationUTCDateTime,
      @Semantics.user.createdBy: true
      cast(createdbyuser as ehfnd_bo_crea_uname preserving type )             as CreatedByUser,
      @Semantics.systemDateTime.lastChangedAt: true
      cast(lastchangeutcdatetime as ehfnd_bo_lchg_date_time preserving type ) as LastChangeUTCDateTime,
      @Semantics.user.lastChangedBy: true
      cast(lastchangedbyuser as ehfnd_bo_lchg_uname preserving type )         as LastChangedByUser,
      
      envrmtwastehazardcharcid                                                as EnvrmtWasteHazardCharcID,
      
      /* Associations */
      _ChmlCmplncInfo  
}