FINOC_RULE_NWA_BASE

DDL: FINOC_RULE_NWA_BASE SQL: FINOC_RULE_NWAB Type: view

O/C Rule: Network Activity Base

FINOC_RULE_NWA_BASE is a CDS View that provides data about "O/C Rule: Network Activity Base" in SAP S/4HANA. It reads from 5 data sources (afko, afvc, aufk, finoc_orglchg, jest) and exposes 12 fields with key fields aufnr, vornr, orgl_change.

Data Sources (5)

SourceAliasJoin Type
afko afko inner
afvc afvc from
aufk aufk inner
finoc_orglchg orglchg inner
jest StatusObject left_outer

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName FINOC_RULE_NWAB view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label O/C Rule: Network Activity Base view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY aufnr afko aufnr SettlementOrder
KEY vornr afvc vornr Operation
KEY orgl_change finoc_orglchg orgl_change Organizational Change
kokrs aufk kokrs Org. Value
bukrs afvc bukrs Value
prctr_old
prctr
srce_aufnr
aufpl afvc aufpl TaskList No.Ops
aplzl afvc aplzl Plan No.f.Oper.
ps_psp_pnr afvc projn WBS Element
ps_prj_pnr afko pronr Project Number

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 FINOC_RULE_NWA_BASE.
-- 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: FINOC_RULE_NWAB

CREATE VIEW FINOC_RULE_NWA_BASE AS
SELECT
  afko.aufnr AS aufnr,
  afvc.vornr AS vornr,
  orglchg.orgl_change AS orgl_change,
  aufk.kokrs AS kokrs,
  afvc.bukrs AS bukrs,
  coalesce(rt_nwa.prctr_old, afvc.prctr) AS prctr_old,
  cast( ' ' as finoc_prctr_new preserving type ) AS prctr,
  cast(' ' as finoc_srce_aufnr preserving type) AS srce_aufnr,
  afvc.aufpl AS aufpl,
  afvc.aplzl AS aplzl,
  afvc.projn AS ps_psp_pnr,
  afko.pronr AS ps_prj_pnr
FROM afvc
INNER JOIN afko ON /* join condition not captured in parsed metadata */
INNER JOIN aufk ON /* join condition not captured in parsed metadata */
INNER JOIN finoc_orglchg AS orglchg ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN jest AS StatusObject ON /* join condition not captured in parsed metadata */
;