P_CanclnBillingDocProcFlowM4

DDL: P_CANCLNBILLINGDOCPROCFLOWM4 SQL: PBILLGDOCPROCFM4 Type: view CONSUMPTION

P_CanclnBillingDocProcFlowM4 is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_SDDocumentProcessFlow) and exposes 8 fields with key fields LevelM4Document, LevelM4DocumentItem, LevelM3Document, LevelM3DocumentItem, LevelM3DocumentCategory.

Data Sources (1)

SourceAliasJoin Type
I_SDDocumentProcessFlow LevelM4 inner

Annotations (10)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.private true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PBILLGDOCPROCFM4 view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY LevelM4Document PrecedingDocument SD Document
KEY LevelM4DocumentItem PrecedingDocumentItem Item
KEY LevelM3Document LevelM3Document
KEY LevelM3DocumentItem LevelM3DocumentItem
KEY LevelM3DocumentCategory LevelM3DocumentCategory
KEY BillingDocument BillingDocument SD Document
BillingDocumentType BillingDocumentType Billing Type
SalesOrganization LevelM3 SalesOrganization Sales Organization

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_CanclnBillingDocProcFlowM4.
-- 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.
-- SQL view name: PBILLGDOCPROCFM4

CREATE VIEW P_CanclnBillingDocProcFlowM4 AS
SELECT
  PrecedingDocument AS LevelM4Document,
  PrecedingDocumentItem AS LevelM4DocumentItem,
  LevelM3Document,
  LevelM3DocumentItem,
  LevelM3DocumentCategory,
  BillingDocument,
  BillingDocumentType,
  LevelM3.SalesOrganization AS SalesOrganization
INNER JOIN I_SDDocumentProcessFlow AS LevelM4 ON /* join condition not captured in parsed metadata */
;