Faa_Anek_Add_An

DDL: FAA_ANEK_ADD_AN SQL: FAAV_ANEK_ADD_AN Type: view Package: AB

Intern: Ermittlung von Zusatzfeldern fuer ANLN1

Faa_Anek_Add_An is a CDS View that provides data about "Intern: Ermittlung von Zusatzfeldern fuer ANLN1" in SAP S/4HANA. It reads from 2 data sources (acdoca, Faa_Rep_Ledger) and exposes 13 fields with key fields mandt, bukrs, anln1, anln2, gjahr. Part of development package AB.

Data Sources (2)

SourceAliasJoin Type
acdoca adoc inner
Faa_Rep_Ledger ldnr from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName FAAV_ANEK_ADD_AN view
EndUserText.label Intern: Ermittlung von Zusatzfeldern fuer ANLN1 view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY mandt acdoca rclnt Client
KEY bukrs acdoca rbukrs Company Code
KEY anln1 acdoca anln1 Asset
KEY anln2 acdoca anln2 Sub-number
KEY gjahr acdoca ryear Ref. Year1
KEY subta acdoca subta Sub Transaction
sbusa
mwskz
sgtxt
bzdat
parob1
zuonr
rassc

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_Anek_Add_An.
-- 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_ANEK_ADD_AN

CREATE VIEW Faa_Anek_Add_An AS
SELECT
  adoc.rclnt AS mandt,
  adoc.rbukrs AS bukrs,
  adoc.anln1 AS anln1,
  adoc.anln2 AS anln2,
  adoc.ryear AS gjahr,
  adoc.subta AS subta,
  max (adoc.sbusa) AS sbusa,
  max (adoc.mwskz) AS mwskz,
  max (adoc.sgtxt) AS sgtxt,
  max (adoc.bzdat) AS bzdat,
  max (adoc.parob1) AS parob1,
  max (adoc.zuonr) AS zuonr,
  max (adoc.rassc) AS rassc
FROM Faa_Rep_Ledger AS ldnr
INNER JOIN acdoca AS adoc ON /* join condition not captured in parsed metadata */
;