Summerizationterm1
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)
| Source | Alias | Join Type |
|---|---|---|
| I_GLAccount | glaccount | from |
| Fclm_Glgroup | glgroup | inner |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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'
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