I_CHMLCMPLNCHZDNOTE
Chemical Compliance Hazard Notes
I_CHMLCMPLNCHZDNOTE is a CDS View in S/4HANA. Chemical Compliance Hazard Notes. It contains 4 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| R_DaGdsMlticmpProdHazardNoteTP | view_entity | from | TRANSACTIONAL | DaGds MlticmpProd Hazard Note - TP |
| R_PckgdDngrsGoodHazardNoteTP | view_entity | from | TRANSACTIONAL | Pckgd Dngrs Good Hazard Note - TP |
Fields (4)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | ChmlCmplncInfoUUID | ChmlCmplncInfoUUID | 1 |
| KEY | DngrsGdsHazardNotePhrsUUID | DngrsGdsHazardNotePhrsUUID | 1 |
| DngrsGdsHazardNoteSequence | DngrsGdsHazardNoteSequence | 1 | |
| DngrsGdsRespUnit | DngrsGdsRespUnit | 1 |
@AbapCatalog.sqlViewName: 'ICCHZDNOTE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Chemical Compliance Hazard Notes'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel:
{
usageType:
{
serviceQuality: #A,
sizeCategory: #M,
dataClass: #MASTER
}
}
define view I_ChmlCmplncHzdNote
as select from ehfndd_cci_hn as cci_hn
inner join ehfndd_cci on cci_hn.chmlcmplncinfouuid = ehfndd_cci.uuid
{
key cci_hn.chmlcmplncinfouuid as ChmlCmplncInfoUUID,
key cci_hn.dngrsgdshazardnotephrsuuid as DngrsGdsHazardNotePhrsUUID,
cci_hn.dngrsgdshazardnotesequence as DngrsGdsHazardNoteSequence,
ehfndd_cci.responsible_unit_dg as DngrsGdsRespUnit // Needed for Authorization check
}