A_PureSubstanceDescription

DDL: A_PURESUBSTANCEDESCRIPTION SQL: APURESUBDESC Type: view CONSUMPTION

Pure Substance Description

A_PureSubstanceDescription is a Consumption CDS View that provides data about "Pure Substance Description" in SAP S/4HANA. It reads from 1 data source (I_SpecDefIdfrForSpecCat) and exposes 6 fields with key fields PureSubstanceInternalID, PureSubstanceDescriptionLang. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_SpecDefIdfrForSpecCat I_SpecDefIdfrForSpecCat from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_PureSubstance _PureSubstance _PureSubstance.PureSubstanceInternalID = $projection.PureSubstanceInternalID

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName APURESUBDESC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Pure Substance Description view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY PureSubstanceInternalID SpecificationInternalID
KEY PureSubstanceDescriptionLang SpecIdfgDescLanguage
PureSubstanceDescription SpecIdfgDescText
PureSubstanceAuthznGroup
PureSubstanceType
_PureSubstance _PureSubstance
@AbapCatalog.sqlViewName: 'APURESUBDESC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #CHECK

@EndUserText.label: 'Pure Substance Description'

@ClientHandling.algorithm: #SESSION_VARIABLE

@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER

@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

define view A_PureSubstanceDescription
  with parameters
    @Semantics.businessDate.at: true
    @Consumption.hidden: true
    P_KeyDate : sydate
  as select from I_SpecDefIdfrForSpecCat( P_KeyDate: $parameters.P_KeyDate,P_SpecificationCategory :'PURE' )

  association [0..1] to A_PureSubstance as _PureSubstance on _PureSubstance.PureSubstanceInternalID = $projection.PureSubstanceInternalID
{

  key SpecificationInternalID as PureSubstanceInternalID,
  key SpecIdfgDescLanguage    as PureSubstanceDescriptionLang,
      SpecIdfgDescText        as PureSubstanceDescription,

      @Consumption.hidden: true
      _PureSubstance (P_KeyDate: $parameters.P_KeyDate).PureSubstanceAuthznGroup,
      @Consumption.hidden: true
      _PureSubstance (P_KeyDate: $parameters.P_KeyDate).PureSubstanceType,

      _PureSubstance
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"A_PURESUBSTANCE",
"I_SPECDEFIDFRFORSPECCAT"
],
"ASSOCIATED":
[
"A_PURESUBSTANCE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/