C_CO_AcctBalLdgrJournalEntrLog

DDL: C_CO_ACCTBALLDGRJOURNALENTRLOG Type: view_entity CONSUMPTION

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)

SourceAliasJoin Type
I_GLAccountLineItem ItemLog from

Parameters (3)

NameTypeDefault
P_Ledger fins_ledger
P_FromPostingDate fis_budat_from
P_ToPostingDate fis_budat_to

Annotations (8)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/