C_ReconAccountVHTemp

DDL: C_RECONACCOUNTVHTEMP SQL: CRECONACCTVH Type: view CONSUMPTION

Reconciliation Account

C_ReconAccountVHTemp is a Consumption CDS View that provides data about "Reconciliation Account" in SAP S/4HANA. It reads from 1 data source (I_GLAccountInChartOfAccounts) and exposes 5 fields with key field ReconciliationAccount. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountInChartOfAccounts I_GLAccountInChartOfAccounts from

Associations (2)

CardinalityTargetAliasCondition
[0..*] C_ReconAccountTextVHTemp _Text I_GLAccountInChartOfAccounts.GLAccount = _Text.GLAccount and I_GLAccountInChartOfAccounts.ChartOfAccounts = _Text.ChartOfAccounts
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CRECONACCTVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey ReconciliationAccount view
Search.searchable true view
EndUserText.label Reconciliation Account view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ReconciliationAccount I_GLAccountInChartOfAccounts GLAccount General Ledger
CompanyCodeasCompanyCode
ChartOfAccountsasChartOfAccounts
ChartofAccounts_Text
_CompanyCode _CompanyCode

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_ReconAccountVHTemp.
-- 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: CRECONACCTVH

CREATE VIEW C_ReconAccountVHTemp AS
SELECT
  I_GLAccountInChartOfAccounts.GLAccount AS ReconciliationAccount
FROM I_GLAccountInChartOfAccounts
LEFT OUTER JOIN C_ReconAccountTextVHTemp AS _Text ON I_GLAccountInChartOfAccounts.GLAccount = _Text.GLAccount AND I_GLAccountInChartOfAccounts.ChartOfAccounts = _Text.ChartOfAccounts  -- association [0..*]
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [0..1]
;