P_BUSSOLNORDSLSORDFLWLVL92

DDL: P_BUSSOLNORDSLSORDFLWLVL92 Type: view CONSUMPTION

Solution Order MTO flow:Good Receipt

P_BUSSOLNORDSLSORDFLWLVL92 is a Consumption CDS View that provides data about "Solution Order MTO flow:Good Receipt" in SAP S/4HANA. It reads from 2 data sources (P_BUSSOLNORDSLSORDFLWLVL91, I_MaterialDocumentRecord) and exposes 10 fields with key fields PrecedingDocument, PrecedingDocumentItem, PrecedingDocumentCategory, SubsequentDocument, SubsequentDocumentItem.

Data Sources (2)

SourceAliasJoin Type
P_BUSSOLNORDSLSORDFLWLVL91 level2 from
I_MaterialDocumentRecord MatDoc inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PBSOSLSOFLWLVL91 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 MTO flow:Good Receipt view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY PrecedingDocument P_BUSSOLNORDSLSORDFLWLVL91 SubsequentDocument Order
KEY PrecedingDocumentItem P_BUSSOLNORDSLSORDFLWLVL91 SubsequentDocumentItem Sales Order Item
KEY PrecedingDocumentCategory P_BUSSOLNORDSLSORDFLWLVL91 SubsequentDocumentCategory
KEY SubsequentDocument I_MaterialDocumentRecord MaterialDocument Material Doc.
KEY SubsequentDocumentItem I_MaterialDocumentRecord MaterialDocumentItem Material Document Item
KEY SubsequentDocumentCategory
BusinessSolutionOrder P_BUSSOLNORDSLSORDFLWLVL91 BusinessSolutionOrder Solution Order
ServiceObjectType P_BUSSOLNORDSLSORDFLWLVL91 ServiceObjectType Object Type
SalesOrder P_BUSSOLNORDSLSORDFLWLVL91 SalesOrder SD Document
SalesOrderItem P_BUSSOLNORDSLSORDFLWLVL91 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_BUSSOLNORDSLSORDFLWLVL92.
-- 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_BUSSOLNORDSLSORDFLWLVL92 AS
SELECT
  level2.SubsequentDocument AS PrecedingDocument,
  level2.SubsequentDocumentItem AS PrecedingDocumentItem,
  level2.SubsequentDocumentCategory AS PrecedingDocumentCategory,
  MatDoc.MaterialDocument AS SubsequentDocument,
  MatDoc.MaterialDocumentItem AS SubsequentDocumentItem,
  cast( 'G' as vbtypl_n) AS SubsequentDocumentCategory,
  level2.BusinessSolutionOrder AS BusinessSolutionOrder,
  level2.ServiceObjectType AS ServiceObjectType,
  level2.SalesOrder AS SalesOrder,
  level2.SalesOrderItem AS SalesOrderItem
FROM P_BUSSOLNORDSLSORDFLWLVL91 AS level2
INNER JOIN I_MaterialDocumentRecord AS MatDoc ON /* join condition not captured in parsed metadata */
;