P_BUSSOLNORDSLSORDFLWLVL12

DDL: P_BUSSOLNORDSLSORDFLWLVL12 Type: view CONSUMPTION

Solution Order Sales Order Flow Level 12

P_BUSSOLNORDSLSORDFLWLVL12 is a Consumption CDS View that provides data about "Solution Order Sales Order Flow Level 12" in SAP S/4HANA. It reads from 2 data sources (P_BusSolnOrdSlsOrdFlwLvl11, I_SDDocumentProcessFlow) and exposes 10 fields with key fields PrecedingDocument, PrecedingDocumentItem, PrecedingDocumentCategory, SubsequentDocument, SubsequentDocumentItem.

Data Sources (2)

SourceAliasJoin Type
P_BusSolnOrdSlsOrdFlwLvl11 Level11 from
I_SDDocumentProcessFlow Level12 inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PBSOSLSOFLWLVL12 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 Sales Order Flow Level 12 view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY PrecedingDocument P_BusSolnOrdSlsOrdFlwLvl11 SubsequentDocument Requisition
KEY PrecedingDocumentItem P_BusSolnOrdSlsOrdFlwLvl11 SubsequentDocumentItem
KEY PrecedingDocumentCategory P_BusSolnOrdSlsOrdFlwLvl11 SubsequentDocumentCategory Doc. Category
KEY SubsequentDocument I_SDDocumentProcessFlow SubsequentDocument Requisition
KEY SubsequentDocumentItem I_SDDocumentProcessFlow SubsequentDocumentItem
KEY SubsequentDocumentCategory
BusinessSolutionOrder P_BusSolnOrdSlsOrdFlwLvl11 BusinessSolutionOrder Solution Order
ServiceObjectType P_BusSolnOrdSlsOrdFlwLvl11 ServiceObjectType Object Type
SalesOrder P_BusSolnOrdSlsOrdFlwLvl11 SalesOrder SD Document
SalesOrderItem P_BusSolnOrdSlsOrdFlwLvl11 SalesOrderItem Sales Order Item

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_BUSSOLNORDSLSORDFLWLVL12.
-- 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_BUSSOLNORDSLSORDFLWLVL12 AS
SELECT
  Level11.SubsequentDocument AS PrecedingDocument,
  Level11.SubsequentDocumentItem AS PrecedingDocumentItem,
  Level11.SubsequentDocumentCategory AS PrecedingDocumentCategory,
  Level12.SubsequentDocument AS SubsequentDocument,
  Level12.SubsequentDocumentItem AS SubsequentDocumentItem,
  cast( 'F' as vbtypl_n) AS SubsequentDocumentCategory,
  Level11.BusinessSolutionOrder AS BusinessSolutionOrder,
  Level11.ServiceObjectType AS ServiceObjectType,
  Level11.SalesOrder AS SalesOrder,
  Level11.SalesOrderItem AS SalesOrderItem
FROM P_BusSolnOrdSlsOrdFlwLvl11 AS Level11
INNER JOIN I_SDDocumentProcessFlow AS Level12 ON /* join condition not captured in parsed metadata */
;