P_DangerousGoodsClassification
P_DangerousGoodsClassification is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_CmplRqRslt) and exposes 11 fields with key field CmplRqRsltUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CmplRqRslt | CmplRqRslt | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PDGCLFN | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.private | true | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CmplRqRsltUUID | I_CmplRqRslt | CmplRqRsltUUID | |
| ComplianceRequirement | I_CmplRqRslt | ComplianceRequirement | ||
| ChmlCmplncInfoUUID | I_CmplRqRslt | ChmlCmplncInfoUUID | ||
| CmplRqVersUUID | I_CmplRqRslt | CmplRqVersUUID | ||
| CmplRqRsltProcessingStatus | I_CmplRqRslt | CmplRqRsltProcessingStatus | ||
| CmplRqRsltManualStatus | I_CmplRqRslt | CmplRqRsltManualStatus | ||
| CmplRqRsltReldCmplncSts | I_CmplRqRslt | CmplRqRsltReldCmplncSts | ||
| CmplRqRsltDngrsGdsBscDetsUUID | CmplRqRsltDngrsGdsBscDets | CmplRqRsltDngrsGdsBscDetsUUID | ||
| ClassifiedAsDangerousGood | CmplRqRsltDngrsGdsBscDets | ClassifiedAsDangerousGood | ||
| DangerousGoodsPackingGroup | CmplRqRsltDngrsGdsBscDets | DangerousGoodsPackingGroup | ||
| DangerousGoodsIdnNumber |
@AbapCatalog.sqlViewName: 'PDGCLFN'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.private: true
@VDM.viewType: #COMPOSITE
define view P_DangerousGoodsClassification
as select from I_CmplRqRslt as CmplRqRslt
join I_CmplRqRsltDngrsGdsBscDets as CmplRqRsltDngrsGdsBscDets on CmplRqRslt.CmplRqRsltUUID = CmplRqRsltDngrsGdsBscDets.CmplRqRsltUUID
{
key CmplRqRslt.CmplRqRsltUUID,
CmplRqRslt.ComplianceRequirement,
CmplRqRslt.ChmlCmplncInfoUUID,
CmplRqRslt.CmplRqVersUUID,
CmplRqRslt.CmplRqRsltProcessingStatus,
CmplRqRslt.CmplRqRsltManualStatus,
CmplRqRslt.CmplRqRsltReldCmplncSts,
CmplRqRsltDngrsGdsBscDets.CmplRqRsltDngrsGdsBscDetsUUID,
CmplRqRsltDngrsGdsBscDets.ClassifiedAsDangerousGood,
CmplRqRsltDngrsGdsBscDets.DangerousGoodsPackingGroup,
cast( concat( DangerousGoodsIdnNumberType, DangerousGoodsIdnNumber ) as ehdgm_dangerous_good_idn_comb ) as DangerousGoodsIdnNumber
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CMPLRQRSLT",
"I_CMPLRQRSLTDNGRSGDSBSCDETS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA