P_BUSSOLNORDSUBSCRPNFLWVL3

DDL: P_BUSSOLNORDSUBSCRPNFLWVL3 Type: view CONSUMPTION

Solution Order Subscription Flow: Level3

P_BUSSOLNORDSUBSCRPNFLWVL3 is a Consumption CDS View that provides data about "Solution Order Subscription Flow: Level3" in SAP S/4HANA. It reads from 2 data sources (P_BUSSOLNORDSUBSCRPNFLWVL2, I_BillingDocumentItem) and exposes 10 fields with key fields PrecedingDocument, PrecedingDocumentItem, PrecedingDocumentCategory, SubsequentDocument, SubsequentDocumentItem.

Data Sources (2)

SourceAliasJoin Type
P_BUSSOLNORDSUBSCRPNFLWVL2 Level2 from
I_BillingDocumentItem Level3 inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PBSOSBFLWLVL3 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 Subscription Flow: Level3 view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY PrecedingDocument P_BUSSOLNORDSUBSCRPNFLWVL2 SubsequentDocument
KEY PrecedingDocumentItem P_BUSSOLNORDSUBSCRPNFLWVL2 SubsequentDocumentItem
KEY PrecedingDocumentCategory P_BUSSOLNORDSUBSCRPNFLWVL2 SubsequentDocumentCategory
KEY SubsequentDocument I_BillingDocumentItem BillingDocument SD Document
KEY SubsequentDocumentItem I_BillingDocumentItem BillingDocumentItem Item
KEY SubsequentDocumentCategory
BusinessSolutionOrder P_BUSSOLNORDSUBSCRPNFLWVL2 BusinessSolutionOrder Solution Order
ServiceObjectType P_BUSSOLNORDSUBSCRPNFLWVL2 ServiceObjectType Object Type
SubscrpnBillgSubscription SubscrpnBillgSubscription
SubscrpnBillgSubscriptionItem SubscrpnBillgSubscriptionItem

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_BUSSOLNORDSUBSCRPNFLWVL3.
-- 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_BUSSOLNORDSUBSCRPNFLWVL3 AS
SELECT
  Level2.SubsequentDocument AS PrecedingDocument,
  Level2.SubsequentDocumentItem AS PrecedingDocumentItem,
  Level2.SubsequentDocumentCategory AS PrecedingDocumentCategory,
  Level3.BillingDocument AS SubsequentDocument,
  Level3.BillingDocumentItem AS SubsequentDocumentItem,
  Level3._BillingDocument.SDDocumentCategory AS SubsequentDocumentCategory,
  Level2.BusinessSolutionOrder AS BusinessSolutionOrder,
  Level2.ServiceObjectType AS ServiceObjectType,
  SubscrpnBillgSubscription,
  SubscrpnBillgSubscriptionItem
FROM P_BUSSOLNORDSUBSCRPNFLWVL2 AS Level2
INNER JOIN I_BillingDocumentItem AS Level3 ON /* join condition not captured in parsed metadata */
;