I_ProdPurchasingOrganisation

DDL: I_PRODPURCHASINGORGANISATION SQL: IPRODPURORG Type: view BASIC

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)

SourceAliasJoin Type
P_ProductPlantBasic MaterialPlantData from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PlantPurchasingOrganization _PlantPurOrg $projection.Plant = _PlantPurOrg.Plant

Annotations (11)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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

}