P_CanclnBillingDocProcFlow0

DDL: P_CANCLNBILLINGDOCPROCFLOW0 SQL: PCBILLDOCPROCF0 Type: view CONSUMPTION

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

Data Sources (1)

SourceAliasJoin Type
I_BillingDocument BillingDocument from

Annotations (8)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
VDM.private true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PCBILLDOCPROCF0 view

Fields (6)

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

CREATE VIEW P_CanclnBillingDocProcFlow0 AS
SELECT
  BillingDocument.BillingDocument AS BillingDocument,
  BillingDocument.BillingDocumentCategory AS BillingDocumentCategory,
  BillingDocument.SDDocumentCategory AS SDDocumentCategory,
  BillingDocument.BillingDocumentType AS BillingDocumentType,
  BillingDocument.BillingDocumentIsCancelled AS BillingDocumentIsCancelled,
  BillingDocument.SalesOrganization AS SalesOrganization
FROM I_BillingDocument AS BillingDocument
;