P_BUSSOLNORDENTPROJECTFLWLVL1
Solution Order Enterprise Project Flow: Level 1
P_BUSSOLNORDENTPROJECTFLWLVL1 is a CDS View in S/4HANA. Solution Order Enterprise Project Flow: Level 1. It contains 5 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| P_BusSolnOrdEntProjectFlwLvl2 | view | from | CONSUMPTION | Solution Order Enterprise Project Flow: Level 2 |
Fields (5)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | SubsequentDocument | PrecedingDocument | 1 |
| KEY | SubsequentDocumentCategory | PrecedingDocumentCategory | 1 |
| KEY | SubsequentDocumentItem | PrecedingDocumentItem | 1 |
| BusinessSolutionOrder | BusinessSolutionOrder | 1 | |
| CustomerProject | CustomerProject | 1 |
@AbapCatalog: {
sqlViewName: 'PBSOEPFLWLVL1',
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 1'
// Solution Order -> Customer Project
define view P_BusSolnOrdEntProjectFlwLvl1
as select from I_BusSolnOrdItmFUPEntProject as _CustProjItem
inner join I_ServiceDocumentItemEnhcd as _SolnOrder on _SolnOrder.ServiceDocumentItemCharUUID = _CustProjItem.BusSolnOrderItemCharUUID
and _SolnOrder.ServiceObjectType = 'BUS2000172' --> Solution Order
inner join I_BusSolnOrdFUPEntProject as _CustProjHeader on _CustProjHeader.ServiceDocumentRelationUUID = _CustProjItem.ServiceDocumentItmRelationUUID
{
key _SolnOrder.ServiceDocument as PrecedingDocument,
key _SolnOrder.ServiceDocumentItem as PrecedingDocumentItem,
key 'SOLO' as PrecedingDocumentCategory,
key _CustProjHeader.Project as SubsequentDocument,
key cast('' as posnr_nach) as SubsequentDocumentItem,
key 'CPMP' as SubsequentDocumentCategory,
// For filtering
_SolnOrder.ServiceDocument as BusinessSolutionOrder,
_SolnOrder.ServiceObjectType as ServiceObjectType,
cast(_CustProjHeader.Project as subsequ_doc) as CustomerProject,
_SolnOrder.ServiceDocumentItem as CustomerProjectItem
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BUSSOLNORDFUPENTPROJECT",
"I_BUSSOLNORDITMFUPENTPROJECT",
"I_SERVICEDOCUMENTITEMENHCD"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/