C_DspDocFlwAcctMaintVH

DDL: C_DSPDOCFLWACCTMAINTVH Type: view_entity CONSUMPTION Package: ODATA_GL_DSP_DOC_FLW

Account Maintenance VH

C_DspDocFlwAcctMaintVH is a Consumption CDS View that provides data about "Account Maintenance VH" in SAP S/4HANA. It reads from 1 data source (I_DspDocFlwAccountMaintenance) and exposes 10 fields with key fields AccountMaintenanceDocument, 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_DspDocFlwAccountMaintenance I_DspDocFlwAccountMaintenance from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #CONSUMPTION view
Consumption.ranked true view
Search.searchable true view
EndUserText.label Account Maintenance VH view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F3665 ASQL_F3665 C2 NOT_RELEASED

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY AccountMaintenanceDocument AccountMaintenanceDocument SD Document
KEY FiscalYear FiscalYear G/L Fiscal Year
DocumentDate Journal Entry Date
CompanyCode CompanyCode Receiver Company Code
PostingDate PostingDate Posting Date for GR
InvoiceGrossAmount InvoiceGrossAmount Gross Invoice Amount
DocumentCurrency DocumentCurrency Document Currency
IsEndOfPurposeBlocked IsEndOfPurposeBlocked Busin. Purp. Cmpltd.
AnchorDocument SD Document
ReferenceDocumentType

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_DspDocFlwAcctMaintVH.
-- 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_DspDocFlwAcctMaintVH AS
SELECT
  AccountMaintenanceDocument,
  FiscalYear,
  cast( DocumentDate as bldat preserving type ) AS DocumentDate,
  CompanyCode,
  PostingDate,
  InvoiceGrossAmount,
  DocumentCurrency,
  IsEndOfPurposeBlocked,
  cast( AccountMaintenanceDocument as fac_ddf_anchor_document ) AS AnchorDocument,
  cast( 'BUS2081' as swo_objtyp) AS ReferenceDocumentType
FROM I_DspDocFlwAccountMaintenance
;