fisvd_glacct_coa

DDL: FISVD_GLACCT_COA SQL: FISV_GLACCT_COA Type: view

Master Data GLAccounts in ChartofAccts

fisvd_glacct_coa is a CDS View that provides data about "Master Data GLAccounts in ChartofAccts" in SAP S/4HANA. It reads from 2 data sources (t004, t030) and exposes 19 fields with key field ktopl.

Data Sources (2)

SourceAliasJoin Type
t004 t004 inner
t030 t030 left_outer

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName FISV_GLACCT_COA view
EndUserText.label Master Data GLAccounts in ChartofAccts view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.buffering.status #NOT_ALLOWED view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY ktopl ska1 ktopl G/L Chart of Accounts
saknr ska1 saknr G/L Account
xbilk ska1 xbilk Checkbox
sakan ska1 sakan G/L Account
bilkt ska1 bilkt Group Account Number
erdat ska1 erdat Entered On
ernam ska1 ernam User Name
gvtyp ska1 gvtyp P&L state. acct
ktoks ska1 ktoks GL Grp
mustr ska1 mustr Sample table
vbund ska1 vbund Trading Partner
xloev ska1 xloev Deletion Flag
xspea ska1 xspea Creation Block
xspeb ska1 xspeb Posting Block
xspep ska1 xspep Planning Block
func_area ska1 func_area Receiving Func. Area
kktpl t004 kktpl Group ChtAccts
konts t030 konts Sales Reduction (Dr)
xbilkwhenXthenelseXendasxplkt

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view fisvd_glacct_coa.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: FISV_GLACCT_COA

CREATE VIEW fisvd_glacct_coa AS
SELECT
  ska1.ktopl AS ktopl,
  ska1.saknr AS saknr,
  ska1.xbilk AS xbilk,
  ska1.sakan AS sakan,
  ska1.bilkt AS bilkt,
  ska1.erdat AS erdat,
  ska1.ernam AS ernam,
  ska1.gvtyp AS gvtyp,
  ska1.ktoks AS ktoks,
  ska1.mustr AS mustr,
  ska1.vbund AS vbund,
  ska1.xloev AS xloev,
  ska1.xspea AS xspea,
  ska1.xspeb AS xspeb,
  ska1.xspep AS xspep,
  ska1.func_area AS func_area,
  t004.kktpl AS kktpl,
  t030.konts AS konts,
  case ska1.xbilk when 'X' then '' else 'X' end as xplkt AS xbilkwhenXthenelseXendasxplkt
INNER JOIN t004 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN t030 ON /* join condition not captured in parsed metadata */
;