P_BUSSOLNORDSLSORDFLWLVL14

DDL: P_BUSSOLNORDSLSORDFLWLVL14 Type: view CONSUMPTION

Solution Order Sales Order Flow Level 14

P_BUSSOLNORDSLSORDFLWLVL14 is a Consumption CDS View that provides data about "Solution Order Sales Order Flow Level 14" in SAP S/4HANA. It reads from 3 data sources (P_BUSSOLNORDSLSORDFLWLVL13, I_PurchaseOrderHistoryBasic, I_SDDocumentProcessFlow) and exposes 20 fields with key fields PrecedingDocument, PrecedingDocumentItem, PrecedingDocumentCategory, SubsequentDocument, SubsequentDocumentItem.

Data Sources (3)

SourceAliasJoin Type
P_BUSSOLNORDSLSORDFLWLVL13 Level13 from
I_PurchaseOrderHistoryBasic POtoGR inner
I_SDDocumentProcessFlow SlsDoc inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PBSOSLSOFLWLVL14 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 14 view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY PrecedingDocument P_BUSSOLNORDSLSORDFLWLVL13 SubsequentDocument Outbound Delivery
KEY PrecedingDocumentItem P_BUSSOLNORDSLSORDFLWLVL13 SubsequentDocumentItem Item
KEY PrecedingDocumentCategory P_BUSSOLNORDSLSORDFLWLVL13 SubsequentDocumentCategory
KEY SubsequentDocument I_SDDocumentProcessFlow SubsequentDocument
KEY SubsequentDocumentItem I_SDDocumentProcessFlow SubsequentDocumentItem Outb. Delivery Item
KEY SubsequentDocumentCategory
BusinessSolutionOrder P_BUSSOLNORDSLSORDFLWLVL13 BusinessSolutionOrder Solution Order
ServiceObjectType P_BUSSOLNORDSLSORDFLWLVL13 ServiceObjectType Object Type
SalesOrder P_BUSSOLNORDSLSORDFLWLVL13 SalesOrder SD Document
PrecedingDocumentItem Item
PrecedingDocumentasPrecedingDocument
KEY PrecedingDocumentItem PurOrd PrecedingDocumentItem Item
KEY PrecedingDocumentCategory PurOrd PrecedingDocumentCategory
KEY SubsequentDocument I_PurchaseOrderHistoryBasic PurchasingHistoryDocument
KEY SubsequentDocumentItem Outb. Delivery Item
KEY SubsequentDocumentCategory
BusinessSolutionOrder PurOrd BusinessSolutionOrder Solution Order
ServiceObjectType PurOrd ServiceObjectType Object Type
SalesOrder PurOrd SalesOrder SD Document
SalesOrderItem PurOrd 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_BUSSOLNORDSLSORDFLWLVL14.
-- 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_BUSSOLNORDSLSORDFLWLVL14 AS
SELECT
  Level13.SubsequentDocument AS PrecedingDocument,
  Level13.SubsequentDocumentItem AS PrecedingDocumentItem,
  Level13.SubsequentDocumentCategory AS PrecedingDocumentCategory,
  SlsDoc.SubsequentDocument AS SubsequentDocument,
  SlsDoc.SubsequentDocumentItem AS SubsequentDocumentItem,
  cast( 'G' as vbtypl_n) AS SubsequentDocumentCategory,
  Level13.BusinessSolutionOrder AS BusinessSolutionOrder,
  Level13.ServiceObjectType AS ServiceObjectType,
  Level13.SalesOrder AS SalesOrder,
  PurOrd.SalesOrderItem AS SalesOrderItem
FROM P_BUSSOLNORDSLSORDFLWLVL13 AS Level13
INNER JOIN I_SDDocumentProcessFlow AS SlsDoc ON /* join condition not captured in parsed metadata */
INNER JOIN I_PurchaseOrderHistoryBasic AS POtoGR ON /* join condition not captured in parsed metadata */
;