C_ReconAccountVHTemp
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. Part of development package VDM_MD_BP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_GLAccountInChartOfAccounts | I_GLAccountInChartOfAccounts | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [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)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ReconciliationAccount | I_GLAccountInChartOfAccounts | GLAccount | |
| CompanyCodeasCompanyCode | ||||
| ChartOfAccountsasChartOfAccounts | ||||
| ChartofAccounts_Text | ||||
| _CompanyCode | _CompanyCode |
@AbapCatalog.sqlViewName: 'CRECONACCTVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #CONSUMPTION
@ObjectModel.representativeKey: 'ReconciliationAccount'
@Search.searchable: true
@EndUserText.label: 'Reconciliation Account'
//THIS IS FOR SUPPLIERS ONLY
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
define view C_ReconAccountVHTemp
as
select
from I_GLAccountInChartOfAccounts -- G/L Account Master Record (Chart of Accounts)
join I_GLAccountInCompanyCode-- G/L Account Master Record (Company Code)
on I_GLAccountInCompanyCode.GLAccount = I_GLAccountInChartOfAccounts.GLAccount
join I_CompanyCode -- Company Code
on I_GLAccountInCompanyCode.CompanyCode = I_CompanyCode.CompanyCode and I_GLAccountInChartOfAccounts.ChartOfAccounts = I_CompanyCode.ChartOfAccounts -- Chart of Accounts
association [0..*] to C_ReconAccountTextVHTemp as _Text on I_GLAccountInChartOfAccounts.GLAccount = _Text.GLAccount
and I_GLAccountInChartOfAccounts.ChartOfAccounts = _Text.ChartOfAccounts
association [0..1] to I_CompanyCode as _CompanyCode on $projection.CompanyCode = _CompanyCode.CompanyCode
{
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.75
@Search.ranking: #HIGH
key I_GLAccountInChartOfAccounts.GLAccount as ReconciliationAccount, -- Reconcialition Account key
//--[ GENERATED:012:GlBfhyJl7kY4i6}7dD1KRG
@Consumption.valueHelpDefinition: [
{ entity: { name: 'I_CompanyCodeStdVH',
element: 'CompanyCode' }
}]
// ]--GENERATED
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.75
@Search.ranking: #HIGH
@ObjectModel.foreignKey.association: '_CompanyCode'
key I_GLAccountInCompanyCode.CompanyCode as CompanyCode, -- Company Code
@UI.hidden: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.75
@Search.ranking: #HIGH
I_GLAccountInChartOfAccounts.ChartOfAccounts as ChartOfAccounts, -- Chart of Accounts
_Text,
_CompanyCode
}
where I_GLAccountInCompanyCode.ReconciliationAccountType = 'K' -- Reconciliation indicator = 'K' (Suppliers)
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA