E_OperationalAcctgDocItem

DDL: E_OPERATIONALACCTGDOCITEM Type: view_entity EXTENSION Package: FINS_FIS_FICO

Operational Acctg Doc Item - Extension

E_OperationalAcctgDocItem is a Extension CDS View that provides data about "Operational Acctg Doc Item - Extension" in SAP S/4HANA. It reads from 1 data source (bseg) and exposes 4 fields with key fields CompanyCode, AccountingDocument, FiscalYear, AccountingDocumentItem. Part of development package FINS_FIS_FICO.

Data Sources (1)

SourceAliasJoin Type
bseg Persistence from

Annotations (6)

NameValueLevelField
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #D view
EndUserText.label Operational Acctg Doc Item - Extension view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode bseg bukrs Value
KEY AccountingDocument bseg belnr SD Document
KEY FiscalYear bseg gjahr Settlement Year
KEY AccountingDocumentItem bseg buzei Posting View Item

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 E_OperationalAcctgDocItem.
-- 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 E_OperationalAcctgDocItem AS
SELECT
  Persistence.bukrs AS CompanyCode,
  Persistence.belnr AS AccountingDocument,
  Persistence.gjahr AS FiscalYear,
  Persistence.buzei AS AccountingDocumentItem
FROM bseg AS Persistence
;