P_BillingDocProcFlow0

DDL: P_BILLINGDOCPROCFLOW0 SQL: PBILLGDOCPROCF0 Type: view CONSUMPTION

P_BillingDocProcFlow0 is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_BillingDocumentBasic) and exposes 6 fields with key field BillingDocument.

Data Sources (1)

SourceAliasJoin Type
I_BillingDocumentBasic BillingDocument from

Annotations (9)

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
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
AbapCatalog.sqlViewName PBILLGDOCPROCF0 view
AbapCatalog.preserveKey true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BillingDocument BillingDocument SD Document
BillingDocumentCategory BillingDocumentCategory BillingCategory
SDDocumentCategory SDDocumentCategory Document Cat.
BillingDocumentType BillingDocumentType Billing Type
BillingDocumentIsCancelled BillingDocumentIsCancelled Canceled
SalesOrganization 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_BillingDocProcFlow0.
-- 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: PBILLGDOCPROCF0

CREATE VIEW P_BillingDocProcFlow0 AS
SELECT
  BillingDocument,
  BillingDocumentCategory,
  SDDocumentCategory,
  BillingDocumentType,
  BillingDocumentIsCancelled,
  SalesOrganization
FROM I_BillingDocumentBasic AS BillingDocument
;