SEPMRA_I_PriceClassification_T

DDL: SEPMRA_I_PRICECLASSIFICATION_T Type: view

Price Classification Text

SEPMRA_I_PriceClassification_T is a CDS View that provides data about "Price Classification Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields PriceClassification, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t DomainValueText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] SEPMRA_I_PriceClassification _PriceClassification $projection.PriceClassification = _PriceClassification.PriceClassification
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName SEPMRAIPRCCLASST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
ClientHandling.type #CLIENT_INDEPENDENT view
ClientHandling.algorithm #NONE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey PriceClassification view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Price Classification Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PriceClassification
KEY Language
PriceClassificationText
_PriceClassification _PriceClassification
_Language _Language
--------------------------------------------------------------------------
-- Texts of fixed-value domain SEPMRA_PRICECLASSIFICATION               --
--------------------------------------------------------------------------
@AbapCatalog: {
  sqlViewName: 'SEPMRAIPRCCLASST',
  compiler.compareFilter: true,
  preserveKey: true,
  buffering: {
    status: #ACTIVE,
    type:   #FULL
  }
}

@ClientHandling: {
  type:      #CLIENT_INDEPENDENT,
  algorithm: #NONE
}

@ObjectModel: {
  dataCategory: #TEXT,
  representativeKey: 'PriceClassification',
  usageType: {
    serviceQuality: #A,
    sizeCategory:   #S,
    dataClass:      #META
  }
}

@AccessControl.authorizationCheck: #NOT_REQUIRED -- code list

@EndUserText.label: 'Price Classification Text'
define view SEPMRA_I_PriceClassification_T
  as select from dd07t as DomainValueText

  association [0..1] to SEPMRA_I_PriceClassification as _PriceClassification on $projection.PriceClassification = _PriceClassification.PriceClassification
  association [0..1] to I_Language                   as _Language            on $projection.Language = _Language.Language

{
      @ObjectModel: { foreignKey.association: '_PriceClassification' }
  key cast( DomainValueText.domvalue_l as sepmra_priceclassification preserving type ) as PriceClassification,

      @Semantics:   { language: true }
      @ObjectModel: { foreignKey.association: '_Language' }
  key cast( DomainValueText.ddlanguage as sepmra_language preserving type )            as Language,

      @Semantics:   { text: true }
      cast( DomainValueText.ddtext as ddtext preserving type )                         as PriceClassificationText,

      @ObjectModel: { association.type:  [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT] }
      _PriceClassification,
      _Language
}
where
      DomainValueText.domname  = 'SEPMRA_PRICECLASSIFICATION'
  and DomainValueText.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"SEPMRA_I_PRICECLASSIFICATION"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/