P_BusSolnOrdEntProjectFlwLvl3
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)
| Source | Alias | Join Type |
|---|---|---|
| I_BillingDocumentRequestItem | _BillingDocumentRequestItem | inner |
| P_BusSolnOrdEntProjectFlwLvl2 | Level2 | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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