Faa_Anek_Parob1_Gr

DDL: FAAV_ANEK_PAROB1_GR SQL: FAAV_ANEK_PAR_GR Type: view

Ermittlung des Feldes PAROB1 fuer ANLGR

Faa_Anek_Parob1_Gr is a CDS View that provides data about "Ermittlung des Feldes PAROB1 fuer ANLGR" in SAP S/4HANA. It reads from 2 data sources (acdoca, Faa_Rep_Ledger) and exposes 7 fields with key fields mandt, bukrs, anlgr, anlgr2, gjahr.

Data Sources (2)

SourceAliasJoin Type
acdoca adoc inner
Faa_Rep_Ledger ldnr from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName FAAV_ANEK_PAR_GR view
EndUserText.label Ermittlung des Feldes PAROB1 fuer ANLGR 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 anlgr acdoca anlgr Group Asset
KEY anlgr2 acdoca anlgr2 Subnumber
KEY gjahr acdoca ryear Ref. Year1
KEY subta acdoca subta Sub Transaction
parob1

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_Parob1_Gr.
-- 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_PAR_GR

CREATE VIEW Faa_Anek_Parob1_Gr AS
SELECT
  adoc.rclnt AS mandt,
  adoc.rbukrs AS bukrs,
  adoc.anlgr AS anlgr,
  adoc.anlgr2 AS anlgr2,
  adoc.ryear AS gjahr,
  adoc.subta AS subta,
  max (adoc.parob1) AS parob1
FROM Faa_Rep_Ledger AS ldnr
INNER JOIN acdoca AS adoc ON /* join condition not captured in parsed metadata */
;