Faa_Anek_Bzdat

DDL: FAAV_ANEK_BZDAT SQL: FAAV_ANEK_BZDAT Type: view

Ermittlung des Feldes BZDAT fuer ANLN1

Faa_Anek_Bzdat is a CDS View that provides data about "Ermittlung des Feldes BZDAT fuer ANLN1" in SAP S/4HANA. It reads from 2 data sources (acdoca, Faa_Rep_Ledger) and exposes 7 fields with key fields mandt, bukrs, anln1, anln2, gjahr.

Data Sources (2)

SourceAliasJoin Type
acdoca adoc inner
Faa_Rep_Ledger ldnr from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName FAAV_ANEK_BZDAT view
EndUserText.label Ermittlung des Feldes BZDAT fuer ANLN1 view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view

Fields (7)

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
bzdat

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_Bzdat.
-- 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_BZDAT

CREATE VIEW Faa_Anek_Bzdat 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.bzdat) AS bzdat
FROM Faa_Rep_Ledger AS ldnr
INNER JOIN acdoca AS adoc ON /* join condition not captured in parsed metadata */
;