FCLMGLAccountBankClearing
G/L Accounts Assigned to Bank Clearing
FCLMGLAccountBankClearing is a CDS View that provides data about "G/L Accounts Assigned to Bank Clearing" in SAP S/4HANA. It reads from 1 data source (t042y) and exposes 3 fields with key fields PayingCompanyCode, BankSubAccount.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t042y | t042y | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FCLMGLBANKCLR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.dataMaintenance | #DISPLAY_ONLY | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | G/L Accounts Assigned to Bank Clearing | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PayingCompanyCode | zbukr | ||
| KEY | BankSubAccount | ukont | ||
| Nr_Entry |
@AbapCatalog.sqlViewName: 'FCLMGLBANKCLR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.dataMaintenance: #DISPLAY_ONLY
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'G/L Accounts Assigned to Bank Clearing'
@ObjectModel.usageType: {dataClass: #CUSTOMIZING, serviceQuality: #C, sizeCategory: #S }
define view FCLMGLAccountBankClearing
as select from t042y
{
key zbukr as PayingCompanyCode,
key ukont as BankSubAccount,
cast( count (*) as fqm_account_count_bankclr ) as Nr_Entry
}
where
ukont is not initial
group by
zbukr,
ukont
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T042Y"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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