C_ChmlCmplncInfoDngrsGdsDets
Dangerous Goods Details for a CCI
C_ChmlCmplncInfoDngrsGdsDets is a Consumption CDS View that provides data about "Dangerous Goods Details for a CCI" in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncInfo) and exposes 4 fields with key field ChmlCmplncInfoUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ChmlCmplncInfo | I_ChmlCmplncInfo | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CCCIDGDETS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Dangerous Goods Details for a CCI | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChmlCmplncInfoUUID | ChmlCmplncInfoUUID | ||
| ClassifiedAsDangerousGood | ||||
| ClassifiedAsDangerousGoodName | ||||
| DangerousGoodsIdnNumber |
@AbapCatalog.sqlViewName: 'CCCIDGDETS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Dangerous Goods Details for a CCI'
@VDM.viewType: #CONSUMPTION
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:
{
usageType:
{
dataClass: #MASTER,
sizeCategory: #L, // < 10.000.000
serviceQuality: #C // <= 15 msec
}
}
define view C_ChmlCmplncInfoDngrsGdsDets
as select from I_ChmlCmplncInfo
{
key ChmlCmplncInfoUUID,
@ObjectModel.readOnly: true
@ObjectModel.virtualElement
@ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_EHDGM_CCI_DG_DETAILS_EXIT'
@ObjectModel.text.element: [ 'ClassifiedAsDangerousGoodName' ]
cast( '' as ehdgm_classified_as_dg) as ClassifiedAsDangerousGood,
@ObjectModel.readOnly: true
@ObjectModel.virtualElement
@ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_EHDGM_CCI_DG_DETAILS_EXIT'
@Semantics.text: true
cast( '' as val_text ) as ClassifiedAsDangerousGoodName,
@ObjectModel.readOnly: true
@ObjectModel.virtualElement
@ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_EHDGM_CCI_DG_DETAILS_EXIT'
cast( '' as ehdgm_dangerous_good_idn_comb ) as DangerousGoodsIdnNumber
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CHMLCMPLNCINFO"
],
"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