Faa_Rc1_Anep

DDL: FAA_RC1_ANEP SQL: FAAV_RC1_ANEP Type: view

Parallel areas without leading area

Faa_Rc1_Anep is a CDS View that provides data about "Parallel areas without leading area" in SAP S/4HANA. It reads from 8 data sources and exposes 7 fields with key fields mandt, bukrs, anln1, anln2, gjahr.

Data Sources (8)

SourceAliasJoin Type
Faa_Rc1_Anep1 akey left_outer
anep anep inner
t001 t001 inner
t001a t001a inner
t093 t093 inner
t093a t093a inner
t093a t093a1 inner
t093c t093c from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName FAAV_RC1_ANEP view
EndUserText.label Parallel areas without leading area 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 anep mandt Editing Client
KEY bukrs anep bukrs Value
KEY anln1 anep anln1 Asset
KEY anln2 anep anln2 Sub-number
KEY gjahr anep gjahr Settlement Year
KEY lnran anep lnran Sequence Number
KEY afabe anep afabe Deprec. Area

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_Rc1_Anep.
-- 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_RC1_ANEP

CREATE VIEW Faa_Rc1_Anep AS
SELECT
  anep.mandt AS mandt,
  anep.bukrs AS bukrs,
  anep.anln1 AS anln1,
  anep.anln2 AS anln2,
  anep.gjahr AS gjahr,
  anep.lnran AS lnran,
  anep.afabe AS afabe
FROM t093c
INNER JOIN t093 ON /* join condition not captured in parsed metadata */
INNER JOIN t093a ON /* join condition not captured in parsed metadata */
INNER JOIN t001 ON /* join condition not captured in parsed metadata */
INNER JOIN t001a ON /* join condition not captured in parsed metadata */
INNER JOIN t093a AS t093a1 ON /* join condition not captured in parsed metadata */
INNER JOIN anep ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN Faa_Rc1_Anep1 AS akey ON /* join condition not captured in parsed metadata */
;