FARVD_POSAR_RECALCULATION

DDL: FARVD_POSAR_RECALCULATION SQL: FARVDPOSARRECALC Type: view

Posar calculation via data fields

FARVD_POSAR_RECALCULATION is a CDS View that provides data about "Posar calculation via data fields" in SAP S/4HANA. It reads from 1 data source (febep) and exposes 3 fields with key fields kukey, esnum. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
febep febep from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_ARPostingRuleTP _ReprocessingRule febep.postingruleuuid = _ReprocessingRule.PostingRuleUUID

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName FARVDPOSARRECALC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Posar calculation via data fields view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY kukey febep kukey Statement Short Key
KEY esnum febep esnum Memo Record No.
anwnd febko anwnd Application

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 FARVD_POSAR_RECALCULATION.
-- 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: FARVDPOSARRECALC

CREATE VIEW FARVD_POSAR_RECALCULATION AS
SELECT
  febep.kukey AS kukey,
  febep.esnum AS esnum,
  febko.anwnd AS anwnd
FROM febep
LEFT OUTER JOIN I_ARPostingRuleTP AS _ReprocessingRule ON febep.postingruleuuid = _ReprocessingRule.PostingRuleUUID  -- association [0..1]
;