P_BusSolnOrdEntProjectFlwLvl4
Solution Order Enterprise Project Flow: Level4
P_BusSolnOrdEntProjectFlwLvl4 is a Consumption CDS View that provides data about "Solution Order Enterprise Project Flow: Level4" in SAP S/4HANA. It reads from 2 data sources (P_BusSolnOrdEntProjectFlwLvl3, I_SDDocumentProcessFlow) and exposes 10 fields with key fields PrecedingDocument, PrecedingDocumentItem, PrecedingDocumentCategory, SubsequentDocument, SubsequentDocumentItem.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| P_BusSolnOrdEntProjectFlwLvl3 | Level3 | from |
| I_SDDocumentProcessFlow | Level4 | inner |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PBSOEPFLWLVL4 | 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: Level4 | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PrecedingDocument | P_BusSolnOrdEntProjectFlwLvl3 | SubsequentDocument | |
| KEY | PrecedingDocumentItem | P_BusSolnOrdEntProjectFlwLvl3 | SubsequentDocumentItem | |
| KEY | PrecedingDocumentCategory | P_BusSolnOrdEntProjectFlwLvl3 | SubsequentDocumentCategory | |
| KEY | SubsequentDocument | I_SDDocumentProcessFlow | SubsequentDocument | |
| KEY | SubsequentDocumentItem | I_SDDocumentProcessFlow | SubsequentDocumentItem | |
| KEY | SubsequentDocumentCategory | I_SDDocumentProcessFlow | SubsequentDocumentCategory | |
| BusinessSolutionOrder | BusinessSolutionOrder | |||
| ServiceObjectType | ServiceObjectType | |||
| CustomerProject | CustomerProject | |||
| CustomerProjectItem | CustomerProjectItem |
@AbapCatalog: {
sqlViewName: 'PBSOEPFLWLVL4',
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: Level4'
// PBDR -> Invoice
define view P_BusSolnOrdEntProjectFlwLvl4
as select from P_BusSolnOrdEntProjectFlwLvl3 as Level3
inner join I_SDDocumentProcessFlow as Level4 on Level4.PrecedingDocument = Level3.SubsequentDocument
and Level4.PrecedingDocumentItem = Level3.SubsequentDocumentItem
and Level4.SubsequentDocumentCategory = 'M'
{
key Level3.SubsequentDocument as PrecedingDocument,
key Level3.SubsequentDocumentItem as PrecedingDocumentItem,
key Level3.SubsequentDocumentCategory as PrecedingDocumentCategory,
key Level4.SubsequentDocument as SubsequentDocument,
key Level4.SubsequentDocumentItem as SubsequentDocumentItem,
key Level4.SubsequentDocumentCategory as SubsequentDocumentCategory,
// For filtering
BusinessSolutionOrder,
ServiceObjectType ,
CustomerProject,
CustomerProjectItem
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SDDOCUMENTPROCESSFLOW",
"P_BUSSOLNORDENTPROJECTFLWLVL3"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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