SEPMRA_I_PriceClassification
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | DomainValue | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | SEPMRA_I_PriceClassification_T | _PriceClassificationText | $projection.PriceClassification = _PriceClassificationText.PriceClassification |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
}*/
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