SEPMRA_I_PriceClassification

DDL: SEPMRA_I_PRICECLASSIFICATION Type: view

Price Classification

SEPMRA_I_PriceClassification is a CDS View that provides data about "Price Classification" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field PriceClassification. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l DomainValue from

Associations (1)

CardinalityTargetAliasCondition
[0..*] SEPMRA_I_PriceClassification_T _PriceClassificationText $projection.PriceClassification = _PriceClassificationText.PriceClassification

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName SEPMRAIPRCCLASS 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.compositionRoot true view
ObjectModel.representativeKey PriceClassification view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
EndUserText.label Price Classification view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PriceClassification
Associations_PriceClassificationText
--------------------------------------------------------------------------
-- Fixed values of domain SEPMRA_PRICECLASSIFICATION                    --
--------------------------------------------------------------------------
@AbapCatalog: {
  sqlViewName: 'SEPMRAIPRCCLASS',
  compiler.compareFilter: true,
  preserveKey: true,
  buffering: {
    status: #ACTIVE,
    type:   #FULL
  }
}

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

@ObjectModel: {
  compositionRoot: true,
  representativeKey: 'PriceClassification',
  resultSet: {
    sizeCategory:   #XS       -- display as drop-down list
  },
  usageType: {
    serviceQuality: #A,
    sizeCategory:   #S,
    dataClass:      #META
  }
}

@EndUserText.label: 'Price Classification'

@AccessControl.authorizationCheck: #NOT_REQUIRED -- code list

define view SEPMRA_I_PriceClassification
  as select from dd07l as DomainValue

  association [0..*] to SEPMRA_I_PriceClassification_T as _PriceClassificationText on $projection.PriceClassification = _PriceClassificationText.PriceClassification
{
      @ObjectModel: { text.association: '_PriceClassificationText' }
  key cast( DomainValue.domvalue_l as sepmra_priceclassification preserving type ) as PriceClassification,

      --------------------------------------------------------------------------
      -- Associations                                                         --
      --------------------------------------------------------------------------
      @ObjectModel: { association.type:  [#TO_COMPOSITION_CHILD] }
      _PriceClassificationText
}
where
      DomainValue.domname  = 'SEPMRA_PRICECLASSIFICATION'
  and DomainValue.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"SEPMRA_I_PRICECLASSIFICATION_T"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/