P_FinClsgGLAccountInCoCode
GL Account in company code
P_FinClsgGLAccountInCoCode is a Composite CDS View that provides data about "GL Account in company code" in SAP S/4HANA. It reads from 1 data source (I_GLAccountInCompanyCode) and exposes 4 fields with key fields GLAccount, CompanyCode. Part of development package FINS_FI_CLS_CUSTOMIZING.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_GLAccountInCompanyCode | CompanyCode | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | GLAccount | I_GLAccountInCompanyCode | GLAccount | |
| KEY | CompanyCode | CompanyCode | ||
| GLAccountCurrency | GLAccountCurrency | |||
| ReconciliationAccountType | ReconciliationAccountType |
@AbapCatalog.viewEnhancementCategory: [ #NONE ]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: { serviceQuality: #X, sizeCategory: #S, dataClass: #MIXED }
@VDM.viewType: #COMPOSITE
@VDM.private: true
define view entity P_FinClsgGLAccountInCoCode
as select from I_GLAccountInCompanyCode as CompanyCode
{
key CompanyCode.GLAccount,
key CompanyCode,
GLAccountCurrency,
ReconciliationAccountType,
cast(
case
when IsOpenItemManaged = 'X'
or ReconciliationAccountType = 'D'
or ReconciliationAccountType = 'K'
or ClearingIsLedgerGroupSpecific = 'X'
then 'X'
else '' end as xopvw preserving type ) as AccountIsOpenItemManaged
}
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