FMUSFGA_FROM_ACDOCA_CCFWD

DDL: FMUSFGA_FROM_ACDOCA_CCFWD SQL: FMUSFGA_ACDOCCV Type: view

Ledger 95 data from ACDOCA for correction/close postings

FMUSFGA_FROM_ACDOCA_CCFWD is a CDS View that provides data about "Ledger 95 data from ACDOCA for correction/close postings" in SAP S/4HANA. It reads from 3 data sources (acdoca, fmfg_uj_activ, FMUSFGA_COMPAT) and exposes 35 fields. It has 1 association to related views.

Data Sources (3)

SourceAliasJoin Type
acdoca acdoca union_all
fmfg_uj_activ activation inner
FMUSFGA_COMPAT FMUSFGA_COMPAT from

Associations (1)

CardinalityTargetAliasCondition
[0..1] finsc_period _finsc_period_0 _finsc_period_0.fiscal_year_variant = acdoca.periv and _finsc_period_0.fiscal_year = acdoca.ryear and _finsc_period_0.fiscal_period = '001'

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName FMUSFGA_ACDOCCV view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Ledger 95 data from ACDOCA for correction/close postings view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (35)

KeyFieldSource TableSource FieldDescription
gl_sirid gl_sirid Record number
rldnr rldnr Ledger (Compat.)
rrcty rrcty Record Type
rvers rvers Version: Tax rt
ryear ryear Ref. Year1
rtcur rtcur Currency
drcrk drcrk Debit/Credit
poper poper Posting periods
docct docct Document Categ.
docnr docnr SD Document
docln docln Matching Document Line Item
rbukrs rbukrs Company Code
racct racct GL Account From
rbusa rbusa Business Area
rprctr rprctr Profit Centers
rcntr rcntr Cost Center
rprojk rprojk WBS Element
rfarea rfarea R FuncArea
rldnr Ledger (Compat.)
rrcty acdoca rrcty Record Type
rvers Version: Tax rt
ryear acdoca ryear Ref. Year1
rtcur acdoca rtcur Currency
drcrk acdoca drcrk Debit/Credit
poper acdoca poper Posting periods
docct Document Categ.
docnr acdoca belnr SD Document
docln acdoca docln Matching Document Line Item
rbukrs acdoca rbukrs Company Code
racct acdoca racct GL Account From
rbusa acdoca rbusa Business Area
rprctr acdoca prctr Profit Centers
rcntr acdoca rcntr Cost Center
rfarea acdoca rfarea R FuncArea
rfund acdoca rfund Fund

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 FMUSFGA_FROM_ACDOCA_CCFWD.
-- 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: FMUSFGA_ACDOCCV

CREATE VIEW FMUSFGA_FROM_ACDOCA_CCFWD AS
SELECT
  gl_sirid,
  rldnr,
  rrcty,
  rvers,
  ryear,
  rtcur,
  drcrk,
  poper,
  docct,
  docnr,
  docln,
  rbukrs,
  racct,
  rbusa,
  rprctr,
  rcntr,
  rprojk,
  rfarea,
  acdoca.rfund AS rfund
FROM FMUSFGA_COMPAT
INNER JOIN fmfg_uj_activ AS activation ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN finsc_period AS _finsc_period_0 ON _finsc_period_0.fiscal_year_variant = acdoca.periv AND _finsc_period_0.fiscal_year = acdoca.ryear AND _finsc_period_0.fiscal_period = '001'  -- association [0..1]
-- UNION ALL with additional select branch(es): acdoca
;