C_DspDocFlwSuplrInvcVH

DDL: C_DSPDOCFLWSUPLRINVCVH Type: view_entity CONSUMPTION Package: ODATA_GL_DSP_DOC_FLW

Supplier Invoices VH for DDF

C_DspDocFlwSuplrInvcVH is a Consumption CDS View that provides data about "Supplier Invoices VH for DDF" in SAP S/4HANA. It reads from 1 data source (I_SupplierInvoice) and exposes 11 fields with key fields SupplierInvoice, FiscalYear. It is exposed through 1 OData service (ASQL_F3665). Part of development package ODATA_GL_DSP_DOC_FLW.

Data Sources (1)

SourceAliasJoin Type
I_SupplierInvoice I_SupplierInvoice from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Supplier Invoices VH for DDF view
Search.searchable true view
Consumption.ranked true view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F3665 ASQL_F3665 C2 NOT_RELEASED

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY SupplierInvoice SupplierInvoice SD Document
KEY FiscalYear FiscalYear G/L Fiscal Year
AccountingDocumentType AccountingDocumentType Journal Entry Type
CompanyCode CompanyCode Receiver Company Code
CreationDate Time Stamp
Supplier
SupplierName
SupplierInvoiceIDByInvcgParty SupplierInvoiceIDByInvcgParty Reference
AnchorDocument SD Document
ReferenceDocumentType
IsEndOfPurposeBlocked IsEndOfPurposeBlocked Busin. Purp. Cmpltd.

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_DspDocFlwSuplrInvcVH.
-- 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 C_DspDocFlwSuplrInvcVH AS
SELECT
  SupplierInvoice,
  FiscalYear,
  AccountingDocumentType,
  CompanyCode,
  cast( CreationDate as fac_ddf_document_date preserving type ) AS CreationDate,
  I_SupplierInvoice._Supplier.Supplier AS Supplier,
  I_SupplierInvoice._Supplier.SupplierName AS SupplierName,
  SupplierInvoiceIDByInvcgParty,
  cast( SupplierInvoice as fac_ddf_anchor_document ) AS AnchorDocument,
  cast( 'BUS2081' as swo_objtyp) AS ReferenceDocumentType,
  IsEndOfPurposeBlocked
FROM I_SupplierInvoice
;