fisvd_glacct_comp

DDL: FISVD_GLACCT_COMP SQL: FISV_GLACCT_COMP Type: view

Master Data GLAccounts in Company Code

fisvd_glacct_comp is a CDS View that provides data about "Master Data GLAccounts in Company Code" in SAP S/4HANA. It reads from 4 data sources (fisvd_glacct_cnty, fisvd_glacct_cur, skb1, tka02) and exposes 47 fields with key fields ktopl, saknr.

Data Sources (4)

SourceAliasJoin Type
fisvd_glacct_cnty fisvd_glacct_cnty left_outer
fisvd_glacct_cur fisvd_glacct_cur left_outer
skb1 skb1 from
tka02 tka02 left_outer

Parameters (1)

NameTypeDefault
P_XKTOP2 abap.char( 1 )

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName FISV_GLACCT_COMP view
EndUserText.label Master Data GLAccounts in Company Code 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 (47)

KeyFieldSource TableSource FieldDescription
KEY ktopl t001 ktopl G/L Chart of Accounts
KEY saknr skb1 saknr G/L Account
bukrs skb1 bukrs Value
mitkz skb1 mitkz Reconcil. ID
xkres skb1 xkres Line Items
xopvw skb1 xopvw OI Management
xspeb skb1 xspeb Posting Block
zuawa skb1 zuawa Sort key
altkt skb1 altkt Group Account Number
butxt t001 butxt Posting Text
land1 t001 land1 Trip Ctry/Reg
waers t001 waers Transaction Currency
periv t001 periv FYear Variant
kkber t001 kkber Cred.Contr.Area
ktop2 t001 ktop2 Alternative COA
fdgrv skb1 fdgrv Planning Group
fstag skb1 fstag Field status gp
xgkon skb1 xgkon Rel.Cash Flow
xloeb skb1 xloeb Deletion Flag
xmitk skb1 xmitk Rec.Act Ready
begru skb1 begru AuthorizGroup
busab skb1 busab Dunning Clerk
ernam_skb1 skb1 ernam User Name
erdat_skb1 skb1 erdat Entered On
fdlev skb1 fdlev Planning Level
hbkid skb1 hbkid House Bank
hktid skb1 hktid House Bank Account
mwskz skb1 mwskz Tax Code
waers_skb1 skb1 waers Transaction Currency
xintb skb1 xintb Created Int.
infky skb1 infky Inflation key
xlgclr skb1 xlgclr OI Mgmt by LedgerGrp
bewgp skb1 bewgp Valuation Group
datlz skb1 datlz Last Int. Calc.
kdfsl skb1 kdfsl E/R Diff. Key
togru skb1 togru Tolerance group
vzskz skb1 vzskz Interest Indic.
wmeth skb1 wmeth Account Extern.
xnkon skb1 xnkon Supplement
xsalh skb1 xsalh Balances in LC
zindt skb1 zindt Last Key Date
zinrt skb1 zinrt Int.Calc.Freq.
xmwno skb1 xmwno Pstg w/o tax allowed
ktext fisvd_glacct_cur ktext Text
landx fisvd_glacct_cnty landx Country/Region
kokrs tka02 kokrs Org. Value
xktop2

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_comp.
-- 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_COMP
-- Parameters: P_XKTOP2 : abap.char( 1 )

CREATE VIEW fisvd_glacct_comp AS
SELECT
  t001.ktopl AS ktopl,
  skb1.saknr AS saknr,
  skb1.bukrs AS bukrs,
  skb1.mitkz AS mitkz,
  skb1.xkres AS xkres,
  skb1.xopvw AS xopvw,
  skb1.xspeb AS xspeb,
  skb1.zuawa AS zuawa,
  skb1.altkt AS altkt,
  t001.butxt AS butxt,
  t001.land1 AS land1,
  t001.waers AS waers,
  t001.periv AS periv,
  t001.kkber AS kkber,
  t001.ktop2 AS ktop2,
  skb1.fdgrv AS fdgrv,
  skb1.fstag AS fstag,
  skb1.xgkon AS xgkon,
  skb1.xloeb AS xloeb,
  skb1.xmitk AS xmitk,
  skb1.begru AS begru,
  skb1.busab AS busab,
  skb1.ernam AS ernam_skb1,
  skb1.erdat AS erdat_skb1,
  skb1.fdlev AS fdlev,
  skb1.hbkid AS hbkid,
  skb1.hktid AS hktid,
  skb1.mwskz AS mwskz,
  skb1.waers AS waers_skb1,
  skb1.xintb AS xintb,
  skb1.infky AS infky,
  skb1.xlgclr AS xlgclr,
  skb1.bewgp AS bewgp,
  skb1.datlz AS datlz,
  skb1.kdfsl AS kdfsl,
  skb1.togru AS togru,
  skb1.vzskz AS vzskz,
  skb1.wmeth AS wmeth,
  skb1.xnkon AS xnkon,
  skb1.xsalh AS xsalh,
  skb1.zindt AS zindt,
  skb1.zinrt AS zinrt,
  skb1.xmwno AS xmwno,
  fisvd_glacct_cur.ktext AS ktext,
  fisvd_glacct_cnty.landx AS landx,
  tka02.kokrs AS kokrs,
  $parameters.P_XKTOP2 AS xktop2
FROM skb1
LEFT OUTER JOIN fisvd_glacct_cur ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN fisvd_glacct_cnty ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tka02 ON /* join condition not captured in parsed metadata */
;