I_LU_SAFTGenLedgerMultiBP
SAFT LU Multiple BP On Same Document
I_LU_SAFTGenLedgerMultiBP is a Composite CDS View that provides data about "SAFT LU Multiple BP On Same Document" in SAP S/4HANA. It reads from 2 data sources (I_JournalEntryItem, I_JournalEntryItem) and exposes 10 fields with key fields CompanyCode, FiscalYear, AccountingDocument, Ledger, FiscalYear. Part of development package GLO_FIN_IS_SAFT_LU.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_JournalEntryItem | I_JournalEntryItem | from |
| I_JournalEntryItem | I_JournalEntryItem | union |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_INCLUDED | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| EndUserText.label | SAFT LU Multiple BP On Same Document | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | CompanyCode | ||
| KEY | FiscalYear | FiscalYear | ||
| KEY | AccountingDocument | AccountingDocument | ||
| KEY | Ledger | Ledger | ||
| PostingDate | PostingDate | |||
| KEY | FiscalYear | FiscalYear | ||
| KEY | AccountingDocument | AccountingDocument | ||
| KEY | Ledger | Ledger | ||
| PostingDate | PostingDate | |||
| NumberOfRecords |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #BLOCKED_DATA_INCLUDED
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MIXED
@EndUserText.label: 'SAFT LU Multiple BP On Same Document'
@Metadata.ignorePropagatedAnnotations: true
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]
define view entity I_LU_SAFTGenLedgerMultiBP
as select from I_JournalEntryItem
{
key CompanyCode,
key FiscalYear,
key AccountingDocument,
key Ledger,
PostingDate,
count( distinct Customer ) as NumberOfRecords
}
where
FinancialAccountType = 'D'
group by
CompanyCode,
FiscalYear,
AccountingDocument,
Ledger,
PostingDate
union select from I_JournalEntryItem
{
key CompanyCode,
key FiscalYear,
key AccountingDocument,
key Ledger,
PostingDate,
count( distinct Supplier ) as NumberOfRecords
}
where
FinancialAccountType = 'K'
group by
CompanyCode,
FiscalYear,
AccountingDocument,
Ledger,
PostingDate
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