P_BusSolnOrdEntProjectFlwLvl3

DDL: P_BUSSOLNORDENTPROJECTFLWLVL3 Type: view CONSUMPTION Package: CRMS4_SOLUTION_ORDER_PROGRESS

Solution Order Enterprise Project Flow: Level 3

P_BusSolnOrdEntProjectFlwLvl3 is a Consumption CDS View that provides data about "Solution Order Enterprise Project Flow: Level 3" in SAP S/4HANA. It reads from 2 data sources (I_BillingDocumentRequestItem, P_BusSolnOrdEntProjectFlwLvl2) and exposes 10 fields with key fields PrecedingDocument, PrecedingDocumentItem, PrecedingDocumentCategory, SubsequentDocument, SubsequentDocumentItem. Part of development package CRMS4_SOLUTION_ORDER_PROGRESS.

Data Sources (2)

SourceAliasJoin Type
I_BillingDocumentRequestItem _BillingDocumentRequestItem inner
P_BusSolnOrdEntProjectFlwLvl2 Level2 from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PBSOEPFLWLVL3 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #CONSUMPTION view
VDM.private true view
EndUserText.label Solution Order Enterprise Project Flow: Level 3 view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY PrecedingDocument P_BusSolnOrdEntProjectFlwLvl2 SubsequentDocument
KEY PrecedingDocumentItem P_BusSolnOrdEntProjectFlwLvl2 SubsequentDocumentItem
KEY PrecedingDocumentCategory P_BusSolnOrdEntProjectFlwLvl2 SubsequentDocumentCategory
KEY SubsequentDocument I_BillingDocumentRequestItem BillingDocumentRequest
KEY SubsequentDocumentItem I_BillingDocumentRequestItem BillingDocumentRequestItem
KEY SubsequentDocumentCategory
BusinessSolutionOrder P_BusSolnOrdEntProjectFlwLvl2 BusinessSolutionOrder
ServiceObjectType ServiceObjectType
CustomerProject CustomerProject
CustomerProjectItem CustomerProjectItem
@AbapCatalog: {
    sqlViewName:            'PBSOEPFLWLVL3',
    compiler.compareFilter: true,
    preserveKey:            true
}

@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType: {
    dataClass:      #MIXED,
    serviceQuality: #C,
    sizeCategory:   #XL
}

@VDM: {
    viewType: #CONSUMPTION,
    private: true
}

@EndUserText.label: 'Solution Order Enterprise Project Flow: Level 3'

// Sales Order -> PBDR

define view P_BusSolnOrdEntProjectFlwLvl3
  as select from P_BusSolnOrdEntProjectFlwLvl2 as Level2
    inner join   I_BillingDocumentRequestItem  as _BillingDocumentRequestItem   on _BillingDocumentRequestItem.SalesDocument = Level2.SubsequentDocument
                                                                                and _BillingDocumentRequestItem.SalesDocumentItem = Level2.SubsequentDocumentItem
{

  key Level2.SubsequentDocument                                                      as PrecedingDocument,
  key Level2.SubsequentDocumentItem                                                  as PrecedingDocumentItem,
  key Level2.SubsequentDocumentCategory                                              as PrecedingDocumentCategory,
  key _BillingDocumentRequestItem.BillingDocumentRequest                             as SubsequentDocument,
  key _BillingDocumentRequestItem.BillingDocumentRequestItem                         as SubsequentDocumentItem,
  key 'PBDR'                                                                         as SubsequentDocumentCategory,

      // For filtering

     Level2.BusinessSolutionOrder,
     ServiceObjectType,
     CustomerProject,
     CustomerProjectItem 

}