I_PRAProduct
PRA Product
I_PRAProduct is a Basic CDS View (Dimension) that provides data about "PRA Product" in SAP S/4HANA. It reads from 1 data source (I_MinorProduct) and exposes 4 fields with key field Product. It has 3 associations to related views. It is exposed through 2 OData services (UI_INTERESTDETAILSDATAMANAGE, UI_INTRSTOWNRDETSDATAMANAGE). Part of development package OIU_VDM_CDS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MinorProduct | I_MinorProduct | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_MajorProduct | _MajorProduct | $projection.MajorProduct = _MajorProduct.MajorProduct |
| [0..1] | I_MinorProduct | _MinorProduct | $projection.MajorProduct = _MinorProduct.MajorProduct and $projection.MinorProduct = _MinorProduct.MinorProduct |
| [1..*] | I_PRAProductText | _Text | $projection.Product = _Text.Product |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | PRA Product | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IPVPRODUCT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | Product | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.sapObjectNodeType.name | PRAProduct | view | |
| Search.searchable | false | view |
OData Services (2)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_INTERESTDETAILSDATAMANAGE | UI_INTRSTDETAILSDATAMANAGE | V2 | C1 | NOT_RELEASED |
| UI_INTRSTOWNRDETSDATAMANAGE | UI_INTRSTOWNRDETSMANAGE | V2 | C1 | NOT_RELEASED |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Product | |||
| MajorProduct | MajorProduct | |||
| MinorProduct | MinorProduct | |||
| _Text | _Text |
@EndUserText.label: 'PRA Product'
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IPVPRODUCT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'Product'
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET,
#EXTRACTION_DATA_SOURCE ]
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.sapObjectNodeType.name: 'PRAProduct'
@Search.searchable: false
define view I_PRAProduct
as select from I_MinorProduct
association [0..1] to I_MajorProduct as _MajorProduct on $projection.MajorProduct = _MajorProduct.MajorProduct
association [0..1] to I_MinorProduct as _MinorProduct on $projection.MajorProduct = _MinorProduct.MajorProduct
and $projection.MinorProduct = _MinorProduct.MinorProduct
association [1..*] to I_PRAProductText as _Text on $projection.Product = _Text.Product
{
@ObjectModel.text.association: '_Text'
@Search : {ranking: #HIGH, defaultSearchElement: true, fuzzinessThreshold: 0.8}
key cast(concat(MajorProduct, MinorProduct) as oiu_full_pd_cd ) as Product,
@Search : {ranking: #HIGH, defaultSearchElement: true, fuzzinessThreshold: 0.8}
MajorProduct,
MinorProduct,
_Text
}
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