Summerizationterm3

DDL: SUMMERIZATIONTERM3 SQL: FCLMSUMMTERM3 Type: view

summerization term with third priority

Summerizationterm3 is a CDS View that provides data about "summerization term with third priority" in SAP S/4HANA. It reads from 2 data sources (I_GLAccount, Fclm_Glgroup) and exposes 9 fields.

Data Sources (2)

SourceAliasJoin Type
I_GLAccount glaccount from
Fclm_Glgroup glgroup inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName FCLMSUMMTERM3 view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view
AbapCatalog.compiler.compareFilter true view
EndUserText.label summerization term with third 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: 'FCLMSUMMTERM3'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #P
@AbapCatalog.compiler.compareFilter: true

@EndUserText.label: 'summerization term with third priority'
define view Summerizationterm3
  as select from I_GLAccount as glaccount
    inner join   Fclm_Glgroup             as glgroup on  glgroup.bukrs       =  ''
                                                     and glgroup.ktopl       =  ''
                                                     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(1 as abap.int4)                                          as priority
}
where
  glgroup.Linetype = 'G'          
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"FCLM_GLGROUP",
"I_GLACCOUNT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/