FAA_LINEITEMS_SUM

DDL: FAA_LINEITEMS_SUM SQL: FAAV_LINEITEMS_S Type: view

Condense on FAAV_LINEITEMS keyfields

FAA_LINEITEMS_SUM is a CDS View that provides data about "Condense on FAAV_LINEITEMS keyfields" in SAP S/4HANA. It reads from 1 data source (faav_lineitems) and exposes 84 fields.

Data Sources (1)

SourceAliasJoin Type
faav_lineitems faav_lineitems from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName FAAV_LINEITEMS_S view
EndUserText.label Condense on FAAV_LINEITEMS keyfields view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (84)

KeyFieldSource TableSource FieldDescription
mandt mandt Editing Client
keyldgrp
keybukrs
keyanln1
keyanln2
keygjahr
keysubta
keyafabe
keydrcrk
racct racct GL Account From
budat budat Posting Date
bzdat bzdat Reference date
bwasl bwasl Trans. Type
poper poper Posting periods
depr_period depr_period Posting Period
anlgr anlgr Group Asset
anlgr2 anlgr2 Subnumber
anlkl anlkl Asset Class
ktogr ktogr Account Determ.
panl1 panl1 Partner Asset
panl2 panl2 Partner Sub-No.
subta_rev subta_rev Reversal Sub Trans
awtyp awtyp Reference Document Type
awref awref Reference Doc.
aworg aworg Refer. Org.Unit
awsys awsys Logical System
awitgrp awitgrp Ref. Item Group
awitem awitem Ref. Doc. Line Item
recid recid Statistical Key Figure Item
has_fi_doc has_fi_doc FI Doc. Exists
afabe_fi_doc afabe_fi_doc FI Depreciation Area
mig_source mig_source Migr. Source
xreversing xreversing Reversal doc.
xreversed xreversed Reversed
xsettling xsettling Is Settling
xsettled xsettled Is Settled
prec_awtyp prec_awtyp PrecRefTransact
prec_aworg prec_aworg PrecRefOrgUnit
prec_awref prec_awref PrecRefDocument
prec_subta prec_subta Sub Transaction
awtyp_rev awtyp_rev ReversalRefTran
awref_rev awref_rev Reversal Ref.
aworg_rev aworg_rev Reversal Org.
belnr belnr SD Document
Note2377077glvor
vbund vbund Trading Partner
Note2690255bldat
cpudt cpudt Imported On
cputm cputm Time
usnam usnam User Name
tcode tcode Undefined range (can be used for patch levels)
sgtxt sgtxt Text
xblnr xblnr Reference
zuonr zuonr Finance Project
ebeln ebeln Source PurchDoc
Note2508747ebelp
Note2494594obart
objid objid Work Center
augln augln Reserve field
Note2266349trava_pn
ldgrpspec_pn ldgrpspec_pn LDGRP-Specific
afabespec_pn afabespec_pn Area-Specific
ubzdt_pn ubzdt_pn Orig. Val. Dat
xvabg_pn xvabg_pn Compl.Retiremnt
prozs_pn prozs_pn Percentage Rate
rkcur rkcur Ledger curr.
rocur rocur Free Defined Crcy 1
rvcur rvcur Free Defined Crcy 4
rbcur rbcur Free Defined Crcy 3
rccur rccur Third Currency
rdcur rdcur Free Defined Crcy 5
recur recur Free Defined Crcy 6
rfcur rfcur Free Defined Crcy 7
rgcur rgcur Free Defined Crcy 8
cumulatedvaluessumhslasHSL
KSL
OSL
VSL
bsl
csl
dsl
esl
fsl
gsl

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 FAA_LINEITEMS_SUM.
-- 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: FAAV_LINEITEMS_S

CREATE VIEW FAA_LINEITEMS_SUM AS
SELECT
  mandt,
  racct,
  budat,
  bzdat,
  bwasl,
  poper,
  depr_period,
  anlgr,
  anlgr2,
  anlkl,
  ktogr,
  panl1,
  panl2,
  subta_rev,
  awtyp,
  awref,
  aworg,
  awsys,
  awitgrp,
  awitem,
  recid,
  has_fi_doc,
  afabe_fi_doc,
  mig_source,
  xreversing,
  xreversed,
  xsettling,
  xsettled,
  prec_awtyp,
  prec_aworg,
  prec_awref,
  prec_subta,
  awtyp_rev,
  awref_rev,
  aworg_rev,
  belnr,
  vbund,
  cpudt,
  cputm,
  usnam,
  tcode,
  sgtxt,
  xblnr,
  zuonr,
  ebeln,
  objid,
  augln,
  ldgrpspec_pn,
  afabespec_pn,
  ubzdt_pn,
  xvabg_pn,
  prozs_pn,
  rkcur,
  rocur,
  rvcur,
  rbcur,
  rccur,
  rdcur,
  recur,
  rfcur,
  rgcur,
  sum(ksl) AS KSL,
  sum(osl) AS OSL,
  sum(vsl) AS VSL,
  sum(bsl) AS bsl,
  sum(csl) AS csl,
  sum(dsl) AS dsl,
  sum(esl) AS esl,
  sum(fsl) AS fsl,
  sum(gsl) AS gsl
FROM faav_lineitems
;