Finsv_Drf_Glaccount
General Ledger Account for Data Replication
Finsv_Drf_Glaccount is a CDS View that provides data about "General Ledger Account for Data Replication" in SAP S/4HANA. It reads from 8 data sources and exposes 18 fields with key fields coa, compcode, account, kokrs, datbi.
Data Sources (8)
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FINSV_DRF_GLACC | view | |
| ClientDependent | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | General Ledger Account for Data Replication | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #X | view |
Fields (18)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | coa | ska1 | ktopl | |
| KEY | compcode | skb1 | bukrs | |
| KEY | account | skb1 | saknr | |
| KEY | kokrs | cskb | kokrs | |
| KEY | datbi | cskb | datbi | |
| KEY | kalsm | t007a | kalsm | |
| xloev | ska1 | xloev | ||
| xspeb | ska1 | xspeb | ||
| xspep | ska1 | xspep | ||
| mitkz | skb1 | mitkz | ||
| mwskz | skb1 | mwskz | ||
| xintb | skb1 | xintb | ||
| xloeb | skb1 | xloeb | ||
| xspeb_b | skb1 | xspeb | ||
| katyp | cskb | katyp | ||
| fstag | skb1 | fstag | ||
| xmwno | skb1 | xmwno | ||
| tax_type | t007a | mwart |
@AbapCatalog.sqlViewName: 'FINSV_DRF_GLACC'
@ClientDependent: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'General Ledger Account for Data Replication'
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #X
define view Finsv_Drf_Glaccount as
select from skb1
inner join t001
on t001.bukrs = skb1.bukrs
inner join ska1
on ska1.ktopl = t001.ktopl
and ska1.saknr = skb1.saknr
left outer join tka02
on tka02.bukrs = skb1.bukrs
and tka02.gsber = ' '
left outer join cskb
on cskb.kokrs = tka02.kokrs
and cskb.kstar = skb1.saknr
and cskb.datbi = '99991231'
left outer join t004f
on skb1.fstag = t004f.fstag
and t001.fstva = t004f.bukrs
left outer join t005
on t001.land1 = t005.land1
left outer join t007a
on t007a.mwskz = skb1.mwskz
and t007a.kalsm = t005.kalsm {
key ska1.ktopl as coa,
key skb1.bukrs as compcode,
key skb1.saknr as account,
key cskb.kokrs,
key cskb.datbi,
key t007a.kalsm,
ska1.glaccount_type,
ska1.xloev,
ska1.xspeb,
ska1.xspep,
skb1.mitkz,
skb1.mwskz,
skb1.xintb,
skb1.xloeb,
skb1.xspeb as xspeb_b,
cskb.katyp,
skb1.fstag,
skb1.xmwno,
t007a.mwart as tax_type
}
where t001.xtemplt = ' '
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