P_BusSolnOrdSrvcOrdFlwLvl3

DDL: P_BUSSOLNORDSRVCORDFLWLVL3 Type: view CONSUMPTION

Solution Order Service Order Flow: Level 3

P_BusSolnOrdSrvcOrdFlwLvl3 is a Consumption CDS View that provides data about "Solution Order Service Order Flow: Level 3" in SAP S/4HANA. It reads from 4 data sources (P_BusSolnOrdSrvcOrdFlwLvl1, P_BusSolnOrdSrvcOrdFlwLvl2, I_SDDocumentProcessFlow, I_SDDocumentProcessFlow) and exposes 19 fields with key fields PrecedingDocument, PrecedingDocumentItem, PrecedingDocumentCategory, SubsequentDocument, SubsequentDocumentItem.

Data Sources (4)

SourceAliasJoin Type
P_BusSolnOrdSrvcOrdFlwLvl1 Level1 union_all
P_BusSolnOrdSrvcOrdFlwLvl2 Level2 from
I_SDDocumentProcessFlow Level3 inner
I_SDDocumentProcessFlow Level3 inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PBSOSOFLWLVL3 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 Service Order Flow: Level 3 view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY PrecedingDocument I_SDDocumentProcessFlow PrecedingDocument SD Document
KEY PrecedingDocumentItem I_SDDocumentProcessFlow PrecedingDocumentItem Item
KEY PrecedingDocumentCategory I_SDDocumentProcessFlow PrecedingDocumentCategory
KEY SubsequentDocument I_SDDocumentProcessFlow SubsequentDocument Transaction ID
KEY SubsequentDocumentItem I_SDDocumentProcessFlow SubsequentDocumentItem Service Document
KEY SubsequentDocumentCategory I_SDDocumentProcessFlow SubsequentDocumentCategory
BusinessSolutionOrder BusinessSolutionOrder Solution Order
ServiceObjectType ServiceObjectType Object Type
ServiceOrder ServiceOrder Transaction ID
PrecedingDocumentasPrecedingDocument
KEY PrecedingDocumentItem I_SDDocumentProcessFlow PrecedingDocumentItem Item
KEY PrecedingDocumentCategory I_SDDocumentProcessFlow PrecedingDocumentCategory
KEY SubsequentDocument I_SDDocumentProcessFlow SubsequentDocument Transaction ID
KEY SubsequentDocumentItem I_SDDocumentProcessFlow SubsequentDocumentItem Service Document
KEY SubsequentDocumentCategory I_SDDocumentProcessFlow SubsequentDocumentCategory
BusinessSolutionOrder BusinessSolutionOrder Solution Order
ServiceObjectType ServiceObjectType Object Type
ServiceOrder ServiceOrder Transaction ID
ServiceOrderItem ServiceOrderItem Item Number in Doc.

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view P_BusSolnOrdSrvcOrdFlwLvl3.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW P_BusSolnOrdSrvcOrdFlwLvl3 AS
SELECT
  Level3.PrecedingDocument AS PrecedingDocument,
  Level3.PrecedingDocumentItem AS PrecedingDocumentItem,
  Level3.PrecedingDocumentCategory AS PrecedingDocumentCategory,
  Level3.SubsequentDocument AS SubsequentDocument,
  Level3.SubsequentDocumentItem AS SubsequentDocumentItem,
  Level3.SubsequentDocumentCategory AS SubsequentDocumentCategory,
  BusinessSolutionOrder,
  ServiceObjectType,
  ServiceOrder,
  ServiceOrderItem AS PrecedingDocumentasPrecedingDocument,
  ServiceOrderItem
FROM P_BusSolnOrdSrvcOrdFlwLvl2 AS Level2
INNER JOIN I_SDDocumentProcessFlow AS Level3 ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): P_BusSolnOrdSrvcOrdFlwLvl1
;