I_ProdPurchasingOrganisation
Product Purchase Org Combinations
I_ProdPurchasingOrganisation is a Basic CDS View that provides data about "Product Purchase Org Combinations" in SAP S/4HANA. It reads from 1 data source (P_ProductPlantBasic) and exposes 4 fields with key fields Product, Plant, PurchasingOrganization. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_ProductPlantBasic | MaterialPlantData | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PlantPurchasingOrganization | _PlantPurOrg | $projection.Plant = _PlantPurOrg.Plant |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRODPURORG | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Product Purchase Org Combinations | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Product | P_ProductPlantBasic | Product | |
| KEY | Plant | P_ProductPlantBasic | Plant | |
| KEY | PurchasingOrganization | _PlantPurOrg | PurchasingOrganization | |
| _PlantPurOrg | _PlantPurOrg |
@AbapCatalog.sqlViewName: 'IPRODPURORG '
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Product Purchase Org Combinations'
@VDM.viewType: #BASIC
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #MASTER
@Metadata.ignorePropagatedAnnotations:true
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_ProdPurchasingOrganisation
as select from P_ProductPlantBasic as MaterialPlantData
association [0..*] to I_PlantPurchasingOrganization as _PlantPurOrg on $projection.Plant = _PlantPurOrg.Plant
// association [0..*] to I_ProductText as _ProductText on $projection.Product = _ProductText.Product
{
key MaterialPlantData.Product as Product,
key MaterialPlantData.Plant as Plant,
key _PlantPurOrg.PurchasingOrganization as PurchasingOrganization,
_PlantPurOrg
}
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