FISCDS_TRK_DOC_05
Change History from non-leading Ledger
FISCDS_TRK_DOC_05 is a CDS View that provides data about "Change History from non-leading Ledger" in SAP S/4HANA. It reads from 1 data source (bkpf) and exposes 14 fields with key fields CompanyCode, AccountingDocument, FiscalYear. Part of development package FINS_FIS_GL.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| bkpf | bkpf | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FISCDSTRKDOC05 | view | |
| EndUserText.label | Change History from non-leading Ledger | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view |
Fields (14)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | bkpf | bukrs | |
| KEY | AccountingDocument | bkpf | belnr | |
| KEY | FiscalYear | bkpf | gjahr | |
| JournalEntryItem | ||||
| Ledger | bkpf | rldnr | ||
| PostingDate | bkpf | budat | ||
| DocumentDate | bldat | |||
| timestamp | cputm | |||
| CreationTime | cputm | |||
| CreationDate | cpudt | |||
| objectid | ||||
| bkpf_tabkey | ||||
| AccountType | ||||
| GLAccountNR |
@AbapCatalog.sqlViewName: 'FISCDSTRKDOC05'
@EndUserText.label: 'Change History from non-leading Ledger'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
define view FISCDS_TRK_DOC_05
as select from bkpf
{
key bkpf.bukrs as CompanyCode,
key bkpf.belnr as AccountingDocument,
key bkpf.gjahr as FiscalYear,
cast('' as docln6) as JournalEntryItem,
bkpf.rldnr as Ledger,
bkpf.budat as PostingDate,
bldat as DocumentDate,
cputm as timestamp,
cputm as CreationTime,
cpudt as CreationDate,
// n2736524 support for Company Codes with less than four characters (preserve trailing spaces)
replace(replace(concat( bkpf.mandt, concat(rpad(bkpf.bukrs, 4, '|'), concat( bkpf.belnr, bkpf.gjahr))), '|', '| |'), '|', '')
as objectid,
replace(replace(concat( bkpf.mandt, concat(rpad(bkpf.bukrs, 4, '|'), concat( bkpf.belnr, bkpf.gjahr))), '|', '| |'), '|', '')
as bkpf_tabkey,
'' as AccountType,
'' as GLAccountNR
}
where
bstat = 'L'
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