P_BusSolnOrdEntProjectFlwLvl2
Solution Order Enterprise Project Flow: Level 2
P_BusSolnOrdEntProjectFlwLvl2 is a Consumption CDS View that provides data about "Solution Order Enterprise Project Flow: Level 2" in SAP S/4HANA. It reads from 4 data sources (I_EnterpriseProject, I_EnterpriseProjectElement, I_CustProjSlsOrdItem, P_BusSolnOrdEntProjectFlwLvl1) and exposes 12 fields with key fields PrecedingDocument, PrecedingDocumentItem, PrecedingDocumentCategory, SubsequentDocument, SubsequentDocumentItem. Part of development package CRMS4_SOLUTION_ORDER_PROGRESS.
Data Sources (4)
| Source | Alias | Join Type |
|---|---|---|
| I_EnterpriseProject | _EnterpriseProject | inner |
| I_EnterpriseProjectElement | _EnterpriseProjectElement | inner |
| I_CustProjSlsOrdItem | _SalesDocumentItem | inner |
| P_BusSolnOrdEntProjectFlwLvl1 | Level1 | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PBSOEPFLWLVL2 | 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 2 | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PrecedingDocument | P_BusSolnOrdEntProjectFlwLvl1 | SubsequentDocument | |
| KEY | PrecedingDocumentItem | P_BusSolnOrdEntProjectFlwLvl1 | SubsequentDocumentItem | |
| KEY | PrecedingDocumentCategory | P_BusSolnOrdEntProjectFlwLvl1 | SubsequentDocumentCategory | |
| KEY | SubsequentDocument | I_CustProjSlsOrdItem | SalesOrder | |
| KEY | SubsequentDocumentItem | I_CustProjSlsOrdItem | SalesOrderItem | |
| KEY | SubsequentDocumentCategory | |||
| TotalNetAmount | ||||
| TransactionCurrency | ||||
| BusinessSolutionOrder | P_BusSolnOrdEntProjectFlwLvl1 | BusinessSolutionOrder | ||
| ServiceObjectType | ServiceObjectType | |||
| CustomerProject | P_BusSolnOrdEntProjectFlwLvl1 | CustomerProject | ||
| CustomerProjectItem | CustomerProjectItem |
@AbapCatalog: {
sqlViewName: 'PBSOEPFLWLVL2',
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 2'
// Customer Project -> Sales Order
define view P_BusSolnOrdEntProjectFlwLvl2
as select from P_BusSolnOrdEntProjectFlwLvl1 as Level1
inner join I_EnterpriseProject as _EnterpriseProject on _EnterpriseProject.Project = Level1.SubsequentDocument
inner join I_EnterpriseProjectElement as _EnterpriseProjectElement on _EnterpriseProjectElement.ProjectInternalID = _EnterpriseProject.ProjectInternalID
inner join I_CustProjSlsOrdItem as _SalesDocumentItem on _SalesDocumentItem.WBSElementInternalID = _EnterpriseProjectElement.WBSElementInternalID
{
key Level1.SubsequentDocument as PrecedingDocument,
key Level1.SubsequentDocumentItem as PrecedingDocumentItem,
key Level1.SubsequentDocumentCategory as PrecedingDocumentCategory,
key _SalesDocumentItem.SalesOrder as SubsequentDocument,
key _SalesDocumentItem.SalesOrderItem as SubsequentDocumentItem,
key 'CPSO' as SubsequentDocumentCategory,
@Semantics.amount.currencyCode: 'TransactionCurrency'
_SalesDocumentItem._SalesOrder.TotalNetAmount,
_SalesDocumentItem._SalesOrder.TransactionCurrency,
// For filtering
Level1.BusinessSolutionOrder,
ServiceObjectType,
Level1.CustomerProject,
CustomerProjectItem
}
where _EnterpriseProjectElement.WBSElementIsBillingElement = 'X'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA