C_DelivProcFlowBillingDoc

DDL: C_DELIVPROCFLOWBILLINGDOC SQL: CDLVPROCFLBILDOC Type: view CONSUMPTION

Delivery Process Flow - Node Billing Document

C_DelivProcFlowBillingDoc is a Consumption CDS View that provides data about "Delivery Process Flow - Node Billing Document" in SAP S/4HANA. It reads from 1 data source (I_BillingDocument) and exposes 8 fields with key field BillingDocument.

Data Sources (1)

SourceAliasJoin Type
I_BillingDocument I_BillingDocument from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CDLVPROCFLBILDOC view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Delivery Process Flow - Node Billing Document view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BillingDocument BillingDocument SD Document
SDDocumentCategory SDDocumentCategory Document Cat.
BillingDocumentType BillingDocumentType Billing Type
OverallBillingStatus OverallBillingStatus
BillingDocumentDate BillingDocumentDate Billing Date
TotalNetAmount TotalNetAmount Total Net Amount
TransactionCurrency TransactionCurrency Transaction Currency
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 C_DelivProcFlowBillingDoc.
-- 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: CDLVPROCFLBILDOC

CREATE VIEW C_DelivProcFlowBillingDoc AS
SELECT
  BillingDocument,
  SDDocumentCategory,
  BillingDocumentType,
  OverallBillingStatus,
  BillingDocumentDate,
  TotalNetAmount,
  TransactionCurrency,
  SalesOrganization
FROM I_BillingDocument
;