Summerizationterm1

DDL: SUMMERIZATIONTERM1 SQL: FCLMSUMMTERM1 Type: view Package: FCLM_CP

summerization term with first priority

Summerizationterm1 is a CDS View that provides data about "summerization term with first priority" in SAP S/4HANA. It reads from 2 data sources (I_GLAccount, Fclm_Glgroup) and exposes 9 fields. Part of development package FCLM_CP.

Data Sources (2)

SourceAliasJoin Type
I_GLAccount glaccount from
Fclm_Glgroup glgroup inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName FCLMSUMMTERM1 view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view
EndUserText.label summerization term with first priority view

Fields (9)

KeyFieldSource TableSource FieldDescription
GLAccount I_GLAccount GLAccount
CompanyCode I_GLAccount CompanyCode
ChartOfAccount I_GLAccount ChartOfAccounts
SUMGroupping Fclm_Glgroup SUMGroupping
SUMTerm Fclm_Glgroup SUMTerm
Map_CompanyCode Fclm_Glgroup bukrs
Map_ChartOfAccount Fclm_Glgroup ktopl
exclude Fclm_Glgroup exclude
priority
@AbapCatalog.sqlViewName: 'FCLMSUMMTERM1'

@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #P
@EndUserText.label: 'summerization term with first priority'
define view Summerizationterm1
  as select from I_GLAccount as glaccount
    inner join   Fclm_Glgroup             as glgroup on  glgroup.bukrs       =  glaccount.CompanyCode
                                                     and glgroup.ktopl       =  glaccount.ChartOfAccounts
                                                     and glaccount.GLAccount >= glgroup.GLFrom
                                                     and glaccount.GLAccount <= glgroup.GLTo
{
  glaccount.GLAccount                                           as GLAccount,
  glaccount.CompanyCode                                         as CompanyCode,
  glaccount.ChartOfAccounts                                     as ChartOfAccount,
  glgroup.SUMGroupping                                          as SUMGroupping,
  glgroup.SUMTerm                                               as SUMTerm,
  glgroup.bukrs                                                 as Map_CompanyCode,
  glgroup.ktopl                                                 as Map_ChartOfAccount,
  glgroup.exclude                                               as exclude,
  cast(3 as abap.int4)                                          as priority
}
where
  glgroup.Linetype = 'G'