C_CO_AcctBalLdgrJournalEntrLog
Colombia Acct Bal Ledger G/L Acct Jrnl Entr Log
C_CO_AcctBalLdgrJournalEntrLog is a Consumption CDS View that provides data about "Colombia Acct Bal Ledger G/L Acct Jrnl Entr Log" in SAP S/4HANA. It reads from 1 data source (I_GLAccountLineItem) and exposes 3 fields with key fields CompanyCode, FiscalYear, AccountingDocument.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_GLAccountLineItem | ItemLog | from |
Parameters (3)
| Name | Type | Default |
|---|---|---|
| P_Ledger | fins_ledger | |
| P_FromPostingDate | fis_budat_from | |
| P_ToPostingDate | fis_budat_to |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_INCLUDED | view | |
| EndUserText.label | Colombia Acct Bal Ledger G/L Acct Jrnl Entr Log | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| VDM.viewType | #CONSUMPTION | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | I_GLAccountLineItem | CompanyCode | |
| KEY | FiscalYear | I_GLAccountLineItem | FiscalYear | |
| KEY | AccountingDocument | I_GLAccountLineItem | AccountingDocument |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl:{
authorizationCheck: #MANDATORY,
personalData.blocking: #BLOCKED_DATA_INCLUDED
}
@EndUserText.label: 'Colombia Acct Bal Ledger G/L Acct Jrnl Entr Log'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
dataClass: #MIXED,
serviceQuality: #D,
sizeCategory: #XXL
}
@VDM.viewType: #CONSUMPTION
define view entity C_CO_AcctBalLdgrJournalEntrLog
with parameters
@EndUserText.label: 'Ledger'
P_Ledger : fins_ledger,
@EndUserText.label: 'From Posting Date'
P_FromPostingDate : fis_budat_from,
@EndUserText.label: 'To Posting Date'
P_ToPostingDate : fis_budat_to
as select from I_GLAccountLineItem as ItemLog
{
key ItemLog.CompanyCode as CompanyCode,
key ItemLog.FiscalYear as FiscalYear,
key ItemLog.AccountingDocument as AccountingDocument
}
where
ItemLog.Ledger = $parameters.P_Ledger
and ItemLog.PostingDate >= $parameters.P_FromPostingDate
and ItemLog.PostingDate <= $parameters.P_ToPostingDate
group by
ItemLog.CompanyCode,
ItemLog.FiscalYear,
ItemLog.AccountingDocument
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_GLACCOUNTLINEITEM"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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