P_UpaDaGdsClfnTechName
Technical Names - Analytical Composition
P_UpaDaGdsClfnTechName is a Consumption CDS View that provides data about "Technical Names - Analytical Composition" in SAP S/4HANA. It reads from 1 data source (I_ChmlComposition) and exposes 7 fields with key fields ChmlCompositionUUID, SubstanceUUID. Part of development package EHDGM_CNS_COMN.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ChmlComposition | ChemicalComposition | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PDGTECHNAM | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.private | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChmlCompositionUUID | I_ChmlComposition | ChmlCompositionUUID | |
| KEY | SubstanceUUID | _ChmlComponent | SubstanceUUID | |
| ChmlCmplncInfoUUID | _ChmlComponent | ChmlCmplncInfoUUID | ||
| ECNumber | ||||
| CASNumber | ||||
| _Substance | _ChmlComponent | _Substance | ||
| _ChmlCmplncInfo | _ChmlComponent | _ChmlCmplncInfo |
@AbapCatalog.sqlViewName: 'PDGTECHNAM'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM: {
private: true,
viewType: #CONSUMPTION
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
usageType: {
dataClass: #MIXED,
sizeCategory: #L,
serviceQuality: #C
}
}
define view P_UpaDaGdsClfnTechName
as select from I_ChmlComposition as ChemicalComposition
{
key ChemicalComposition.ChmlCompositionUUID as ChmlCompositionUUID,
key _ChmlComponent.SubstanceUUID as SubstanceUUID,
_ChmlComponent.ChmlCmplncInfoUUID as ChmlCmplncInfoUUID,
_ChmlComponent._Substance._ListedSubstance.ECNumber as ECNumber,
_ChmlComponent._Substance._ListedSubstance.CASNumber as CASNumber,
_ChmlComponent._Substance,
// Required for DCL
_ChmlComponent._ChmlCmplncInfo
}
where
ChemicalComposition.ChmlCompositionType = 'ANALYTIC1'
and ChemicalComposition.ChmlCompositionStatus = 'RE'
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