P_SlsOrdProcFlow13

DDL: P_SLSORDPROCFLOW13 SQL: PSLSORDPSPROCF13 Type: view CONSUMPTION

P_SlsOrdProcFlow13 is a Consumption CDS View in SAP S/4HANA. It reads from 2 data sources (I_EngagementProjectItem, P_SlsOrdProcFlow0) and exposes 7 fields with key field SalesOrder.

Data Sources (2)

SourceAliasJoin Type
I_EngagementProjectItem EngagementProjectItem inner
P_SlsOrdProcFlow0 Level0 from

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
AbapCatalog.sqlViewName PSLSORDPSPROCF13 view
AbapCatalog.preserveKey true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY SalesOrder SalesOrder
SalesOrderType SalesOrderType
SalesOrderCategory SalesOrderCategory
EngagementProject
SalesOrganization SalesOrganization
DistributionChannel DistributionChannel
OrganizationDivision OrganizationDivision
@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL

@VDM.private: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@AbapCatalog.sqlViewName: 'PSLSORDPSPROCF13'
@AbapCatalog.preserveKey:true 

define view P_SlsOrdProcFlow13
  as select from P_SlsOrdProcFlow0       as Level0  --> Level 0
     inner join  I_EngagementProjectItem as EngagementProjectItem
     on  Level0.SalesOrder = EngagementProjectItem.EngagementProjectItem   
     and EngagementProjectItem.EngagementProjectItemType = '0SOH'
{
  key SalesOrder,

      SalesOrderType,

      //Category

      SalesOrderCategory,

      //Project      

      EngagementProjectItem._EngagementProject.EngagementProject,
      
      //Organization

      SalesOrganization,
      DistributionChannel,
      OrganizationDivision
      
}
    where Level0.SalesOrderIsProjectBased = 'X'                                                                                                          
  
  
  
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ENGAGEMENTPROJECT",
"I_ENGAGEMENTPROJECTITEM",
"P_SLSORDPROCFLOW0"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/