Faa_Anek_Parob1

DDL: FAAV_ANEK_PAROB1 SQL: FAAV_ANEK_PAROB1 Type: view

Ermittlung des Feldes PAROB1

Faa_Anek_Parob1 is a CDS View that provides data about "Ermittlung des Feldes PAROB1" 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_PAROB1 view
EndUserText.label Ermittlung des Feldes PAROB1 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
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.
-- 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_PAROB1

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