P_ProdAllocPlngBusPartValHelp

DDL: P_PRODALLOCPLNGBUSPARTVALHELP SQL: PPABOBJ_PLNGBPVH Type: view COMPOSITE

P_ProdAllocPlngBusPartValHelp is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (P_ProdAllocPlngBusPartners, I_PartnerFunction) and exposes 3 fields with key field PartnerFunction.

Data Sources (2)

SourceAliasJoin Type
P_ProdAllocPlngBusPartners P_ProdAllocPlngBusPartners inner
I_PartnerFunction PartnerFunctionType from

Annotations (8)

NameValueLevelField
VDM.private true view
VDM.viewType #COMPOSITE view
AbapCatalog.sqlViewName PPABOBJ_PLNGBPVH view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PartnerFunction I_PartnerFunction PartnerFunction
BusinessPartner P_ProdAllocPlngBusPartners BusinessPartner
BusinessPartnerName P_ProdAllocPlngBusPartners BusinessPartnerName
@VDM.private: true
@VDM.viewType: #COMPOSITE
@AbapCatalog.sqlViewName: 'PPABOBJ_PLNGBPVH'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
define view P_ProdAllocPlngBusPartValHelp  
  as select from I_PartnerFunction as PartnerFunctionType
    inner join P_ProdAllocPlngBusPartners on P_ProdAllocPlngBusPartners.SDDocumentPartnerType = PartnerFunctionType.SDDocumentPartnerType               
{ 
  key PartnerFunctionType.PartnerFunction as PartnerFunction,
  
      P_ProdAllocPlngBusPartners.BusinessPartner as BusinessPartner,
      
      P_ProdAllocPlngBusPartners.BusinessPartnerName as BusinessPartnerName
}