P_GR_StRpTrialBalanceGLAcct
Greece All G/L Account
P_GR_StRpTrialBalanceGLAcct is a Composite CDS View that provides data about "Greece All G/L Account" in SAP S/4HANA. It reads from 3 data sources (I_CompanyCode, I_GLAccountInChartOfAccounts, I_GLAccountInCompanyCode) and exposes 7 fields. Part of development package GLO_FIN_IS_TB_GR.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| I_CompanyCode | I_CompanyCode | inner |
| I_GLAccountInChartOfAccounts | I_GLAccountInChartOfAccounts | inner |
| I_GLAccountInCompanyCode | I_GLAccountInCompanyCode | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| EndUserText.label | Greece All G/L Account | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| ChartOfAccounts | I_GLAccountInChartOfAccounts | ChartOfAccounts | ||
| CompanyCode | I_GLAccountInCompanyCode | CompanyCode | ||
| GLAccount | I_GLAccountInChartOfAccounts | GLAccount | ||
| AlternativeGLAccount | I_GLAccountInCompanyCode | AlternativeGLAccount | ||
| AuthorizationGroup | I_GLAccountInCompanyCode | AuthorizationGroup | ||
| Currency | I_CompanyCode | Currency | ||
| CountryChartOfAccounts | I_CompanyCode | CountryChartOfAccounts |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@VDM.private:true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #S,
dataClass: #MIXED
}
@EndUserText.label: 'Greece All G/L Account'
@Consumption.dbHints: [ 'NO_CYCLIC_JOIN']
define view entity P_GR_StRpTrialBalanceGLAcct
as select from I_GLAccountInCompanyCode
inner join I_GLAccountInChartOfAccounts on I_GLAccountInChartOfAccounts.GLAccount = I_GLAccountInCompanyCode.GLAccount
inner join I_CompanyCode on I_CompanyCode.CompanyCode = I_GLAccountInCompanyCode.CompanyCode
{
I_GLAccountInChartOfAccounts.ChartOfAccounts,
I_GLAccountInCompanyCode.CompanyCode,
I_GLAccountInChartOfAccounts.GLAccount,
I_GLAccountInCompanyCode.AlternativeGLAccount,
I_GLAccountInCompanyCode.AuthorizationGroup,
I_CompanyCode.Currency,
I_CompanyCode.CountryChartOfAccounts
}
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