P_ProdAllocPlngBusPartValHelp

DDL: P_PRODALLOCPLNGBUSPARTVALHELP SQL: PPABOBJ_PLNGBPVH Type: view COMPOSITE Package: PRODUCT_ALLOCATION_OBJECT

Product Allocation Planning Business Partner Value Help

P_ProdAllocPlngBusPartValHelp is a Composite CDS View that provides data about "Product Allocation Planning Business Partner Value Help" in SAP S/4HANA. It reads from 2 data sources (P_ProdAllocPlngBusPartners, I_PartnerFunction) and exposes 3 fields with key field PartnerFunction. Part of development package PRODUCT_ALLOCATION_OBJECT.

Data Sources (2)

SourceAliasJoin Type
P_ProdAllocPlngBusPartners P_ProdAllocPlngBusPartners inner
I_PartnerFunction PartnerFunctionType from

Annotations (9)

NameValueLevelField
VDM.private true view
VDM.viewType #COMPOSITE view
AbapCatalog.sqlViewName PPABOBJ_PLNGBPVH view
AbapCatalog.compiler.compareFilter true 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'
@AbapCatalog.compiler.compareFilter:true
@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
}