P_GLAcctTxtInMaintLang
P_GLAcctTxtInMaintLang is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (I_ChartOfAccounts, skat) and exposes 5 fields with key fields ChartOfAccounts, GLAccount.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_ChartOfAccounts | chtaccts | inner |
| skat | text | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | PGLATIML | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ChartOfAccounts | skat | ktopl | |
| KEY | GLAccount | skat | saknr | |
| GLAccountName | skat | txt20 | ||
| GLAccountLongName | skat | txt50 | ||
| Language | I_ChartOfAccounts | MaintenanceLanguage |
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@VDM.private: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PGLATIML'
define view P_GLAcctTxtInMaintLang
as select from skat as text
inner join I_ChartOfAccounts as chtaccts on text.ktopl = chtaccts.ChartOfAccounts
{
key text.ktopl as ChartOfAccounts,
key text.saknr as GLAccount,
text.txt20 as GLAccountName,
text.txt50 as GLAccountLongName,
chtaccts.MaintenanceLanguage as Language
}
where
text.spras = chtaccts.MaintenanceLanguage;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CHARTOFACCOUNTS",
"SKAT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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