SEPMRA_I_PriceClassification_T
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)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | DomainValueText | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | SEPMRA_I_PriceClassification | _PriceClassification | $projection.PriceClassification = _PriceClassification.PriceClassification |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
}*/
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