P_UpaDaGdsClfnTechName

DDL: P_UPADAGDSCLFNTECHNAME SQL: PDGTECHNAM Type: view CONSUMPTION Package: EHDGM_CNS_COMN

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)

SourceAliasJoin Type
I_ChmlComposition ChemicalComposition from

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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'