C_IN_AcctgDocItem

DDL: C_IN_ACCTGDOCITEM SQL: CINACCTGDOCITM Type: view CONSUMPTION

Accounting Document Segment entries

C_IN_AcctgDocItem is a Consumption CDS View that provides data about "Accounting Document Segment entries" in SAP S/4HANA. It reads from 1 data source (I_OperationalAcctgDocItem) and exposes 9 fields with key fields CompanyCode, FiscalYear, AccountingDocument, AccountingDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_OperationalAcctgDocItem I_OperationalAcctgDocItem from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CINACCTGDOCITM view
VDM.viewType #CONSUMPTION view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Accounting Document Segment entries view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY FiscalYear FiscalYear G/L Fiscal Year
KEY AccountingDocument AccountingDocument Journal Entry
KEY AccountingDocumentItem AccountingDocumentItem Posting View Item
AccountingDocumentItemType AccountingDocumentItemType Line Item ID
FinancialAccountType FinancialAccountType Fin. Account Type
AmountInTransactionCurrency AmountInTransactionCurrency Pt Crcy Amt
AmountInCompanyCodeCurrency AmountInCompanyCodeCurrency Local Crcy Amt
GLAccount GLAccount General Ledger

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_IN_AcctgDocItem.
-- 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: CINACCTGDOCITM

CREATE VIEW C_IN_AcctgDocItem AS
SELECT
  CompanyCode,
  FiscalYear,
  AccountingDocument,
  AccountingDocumentItem,
  AccountingDocumentItemType,
  FinancialAccountType,
  AmountInTransactionCurrency,
  AmountInCompanyCodeCurrency,
  GLAccount
FROM I_OperationalAcctgDocItem
;