I_ChmlCmplncWasteData

DDL: I_CHMLCMPLNCWASTEDATA SQL: ICCWASTEDATA Type: view BASIC Package: EHFND_BO_CCW

Chemical Compliance Waste Data

I_ChmlCmplncWasteData is a Basic CDS View that provides data about "Chemical Compliance Waste Data" in SAP S/4HANA. It reads from 1 data source (ehfndv_ccw_wdata) and exposes 6 fields. It has 1 association to related views. Part of development package EHFND_BO_CCW.

Data Sources (1)

SourceAliasJoin Type
ehfndv_ccw_wdata ehfndv_ccw_wdata from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ChmlCmplncInfo _ChmlCmplncInfo $projection.ChmlCmplncInfoUUID = _ChmlCmplncInfo.ChmlCmplncInfoUUID

Annotations (10)

NameValueLevelField
EndUserText.label Chemical Compliance Waste Data view
AbapCatalog.sqlViewName ICCWASTEDATA 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.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view

Fields (6)

KeyFieldSource TableSource FieldDescription
CreationUTCDateTime
CreatedByUser
LastChangeUTCDateTime
LastChangedByUser
EnvrmtWasteHazardCharcID envrmtwastehazardcharcid
_ChmlCmplncInfo _ChmlCmplncInfo
@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  
}