I_PRAMaterial
PRA Material
I_PRAMaterial is a Basic CDS View that provides data about "PRA Material" in SAP S/4HANA. It reads from 1 data source (I_Material) and exposes 12 fields with key field PRAMaterial. It has 1 association to related views. Part of development package OIU_LO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Material | I_Material | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | I_PRAMatlMjrProdMappg | _PRAMaterialMapping | $projection.PRAMaterial = _PRAMaterialMapping.Material |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRAMATERIAL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | PRA Material | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PRAMaterial | Material | ||
| MaterialName | ||||
| MajorProduct | _PRAMaterialMapping | MajorProduct | ||
| MinorProduct | _PRAMaterialMapping | MinorProduct | ||
| MaterialType | MaterialType | |||
| MaterialGroup | MaterialGroup | |||
| MaterialBaseUnit | MaterialBaseUnit | |||
| AuthorizationGroup | AuthorizationGroup | |||
| _Text | _Text | |||
| _BaseUnit | _BaseUnit | |||
| _MaterialGroup | _MaterialGroup | |||
| _MaterialType | _MaterialType |
@AbapCatalog.sqlViewName: 'IPRAMATERIAL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'PRA Material'
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #MASTER
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_PRAMaterial
as select from I_Material
association [1] to I_PRAMatlMjrProdMappg as _PRAMaterialMapping on $projection.PRAMaterial = _PRAMaterialMapping.Material
{
@ObjectModel.text.association: '_Text'
key Material as PRAMaterial,
@Semantics.text: true
_Text[Language = $session.system_language].MaterialName as MaterialName,
_PRAMaterialMapping.MajorProduct as MajorProduct,
_PRAMaterialMapping.MinorProduct as MinorProduct,
MaterialType as MaterialType,
MaterialGroup as MaterialGroup,
@Semantics.unitOfMeasure: true
@ObjectModel.foreignKey.association: '_BaseUnit'
MaterialBaseUnit as MaterialBaseUnit,
@Consumption.hidden: true
AuthorizationGroup as AuthorizationGroup,
_Text,
_BaseUnit,
_MaterialGroup,
_MaterialType
}
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